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