import { Module, ZumitoFramework } from "zumito-framework";

export class <%= name?.charAt(0).toUpperCase() + name?.slice(1); %>Module extends Module {

    constructor(modulePath: string) {
        super(modulePath);

        // Code executed on module initialization
    }
    
}