chore(docs) BaseController

This commit is contained in:
gh0sTedBuddy
2024-04-01 22:46:20 +01:00
parent 802633353a
commit 8d34a9cb7c

View File

@@ -1,3 +1,11 @@
/**
* BaseController class representing the base controller.
* This class can be extended by other controller classes to inherit common functionality.
*/
export default class BaseController {
/**
* Creates an instance of BaseController.
* @constructor
*/
constructor() {}
}