import { MegaCommand } from '@megaorm/cli'; /** * This is a base command template for creating a custom command. * * @extends `MegaCommand` */ export class [className] extends MegaCommand { /** * Define the command syntax, as the following: * - ``: required argument * - ``: optional argument * - `<- name>`: option */ protected static syntax = ''; /** * This method is called when the command is executed. */ public static exec(): any { // Your command logic here... } }