File size: 268 Bytes
b7c4c8f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
/**
 * Utility handlers
 * These handlers are used by various CLI commands
 */

import type { Root } from '../../ink.js';

export async function setupTokenHandler(root: Root): Promise<void> {
  console.error('Setup token handler not implemented');
  process.exit(1);
}