| 4 | import { prompt, ensureInitialized } from "./util.js"; |
| 5 | |
| 6 | export interface IdentityCommandOptions { |
| 7 | testnet?: boolean; |
| 8 | } |
| 9 | |
| 10 | export async function identityCommand(options: IdentityCommandOptions = {}): Promise<void> { |
| 11 | const dbPath = ensureInitialized(); |
nothing calls this directly
no outgoing calls
no test coverage detected