import { Middleware } from "@ipare/core"; export class TemplateMiddleware extends Middleware { get name() { return this.ctx.commandArgs.name; } get template() { return this.ctx.commandArgs.template; } override async invoke(): Promise { this.logger.warn("TODO", this.template, this.name); } }