@milkmaccya2/hostswitch
Version:
A simple CLI tool to manage and switch between multiple hosts file profiles for different development environments
18 lines • 546 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeleteProfileCommand = void 0;
class DeleteProfileCommand {
facade;
profileName;
force;
constructor(facade, profileName, force = false) {
this.facade = facade;
this.profileName = profileName;
this.force = force;
}
async execute() {
return this.facade.deleteProfile(this.profileName, this.force);
}
}
exports.DeleteProfileCommand = DeleteProfileCommand;
//# sourceMappingURL=DeleteProfileCommand.js.map