netlify-cli
Version:
Netlify command line tool
8 lines • 315 B
JavaScript
export const createLogoutCommand = (program) => program
.command('logout', { hidden: true })
.description('Logout of your Netlify account')
.action(async (options, command) => {
const { logout } = await import('./logout.js');
await logout(options, command);
});
//# sourceMappingURL=index.js.map