@veecode-platform/safira-cli
Version:
Generate a microservice project from your spec.
21 lines (20 loc) • 746 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProjectSpringbootUpdate = void 0;
const file_system_utils_1 = require("../../../utils/file-system-utils");
class ProjectSpringbootUpdate {
constructor() { }
getBaseUpdate(projectBase, tmpBase) {
return {
tmpBasePath: file_system_utils_1.FileSystemUtils.buildPath(tmpBase, "src", "main", "java"),
projectBasePath: file_system_utils_1.FileSystemUtils.buildPath(projectBase, "src", "main", "java"),
};
}
static get instance() {
if (!this._instance) {
this._instance = new this();
}
return this._instance;
}
}
exports.ProjectSpringbootUpdate = ProjectSpringbootUpdate;