UNPKG

cloakx

Version:

Cloakx is a secure, lightweight CLI tool to manage your development secrets locally — no cloud, no hassle. Store, retrieve, and manage secrets across projects with encryption and ease. 🔐 Perfect for solo devs, indie hackers, and teams who value speed, si

15 lines (14 loc) 433 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.logoutCommand = logoutCommand; // commands/logout.ts const commander_1 = require("commander"); const session_1 = require("../utils/session"); function logoutCommand() { const cmd = new commander_1.Command('logout'); cmd.action(() => { (0, session_1.clearSession)(); console.log('🔓 Logged out'); }); return cmd; }