bpms_site/.svn/pristine/02/02a04e39e2220a5a6d86d08c54df1cd9261ddbb2.svn-base
2025-11-02 16:38:49 +03:30

11 lines
310 B
Plaintext

/**
* RouteModule is the base class for all route modules. This class should be
* extended by all route modules.
*/ export class RouteModule {
constructor({ userland, definition }){
this.userland = userland;
this.definition = definition;
}
}
//# sourceMappingURL=route-module.js.map