imajin/node_modules/@nestjs/cli/commands/abstract.command.js
2026-01-10 04:52:11 -08:00

9 lines
242 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractCommand = void 0;
class AbstractCommand {
constructor(action) {
this.action = action;
}
}
exports.AbstractCommand = AbstractCommand;