/** * Init command - Initialize a new compliance project */ import { Command } from 'commander' import * as fs from 'fs' import * as path from 'path' interface InitOptions { template?: string force?: boolean } export const initCommand = new Command('init') .description('Initialize a new compliance project') .argument('[directory]', 'Directory to initialize', '.') .option('-t, --template