UNPKG

framework-entersol-web

Version:

Framework based on bootstrap 5

14 lines (12 loc) 338 B
import DebugController from "./views/debug-view"; import TitleController from "./views/title-view"; import Controller from "./views/view"; const CONTROLLERS = { DebugController, TitleController, Controller }; export default CONTROLLERS; export const addControllers = (controllers) => { Object.assign(CONTROLLERS, controllers); }