UNPKG

@cyph/sdk

Version:
14 lines (10 loc) 254 B
#!/usr/bin/env node import {program} from 'commander'; import {register} from '../../auth/index.js'; program .name('cyph auth register') .action(async () => register()) .hook('postAction', () => { process.exit(); }); await program.parseAsync();