Files
mini-loader/packages/cli/src/commands/auth/auth.ts
Morten Olsen 6d8e5bf955 init
2024-01-12 12:43:51 +01:00

8 lines
155 B
TypeScript

import { Command } from 'commander';
import { login } from './auth.login.js';
const auth = new Command('auth');
auth.addCommand(login);
export { auth };