UNPKG

@milkmaccya2/hostswitch

Version:

A simple CLI tool to manage and switch between multiple hosts file profiles for different development environments

16 lines 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EditProfileCommand = void 0; class EditProfileCommand { facade; profileName; constructor(facade, profileName) { this.facade = facade; this.profileName = profileName; } async execute() { return this.facade.editProfile(this.profileName); } } exports.EditProfileCommand = EditProfileCommand; //# sourceMappingURL=EditProfileCommand.js.map