UNPKG

@syntropysoft/praetorian

Version:

Praetorian CLI – A universal multi-environment configuration validator for DevSecOps teams. Validate, compare, and secure YAML/ENV files with ease.

55 lines 1.11 kB
#!/usr/bin/env node export declare class SimpleCLI { private parser; private logger; constructor(); /** * Run the CLI with given arguments */ run(args: string[]): Promise<void>; /** * Execute the parsed command */ private executeCommand; /** * Get command handler */ private getCommandHandler; /** * Get SyntropyLog command handlers */ private getSyntropyLogHandlers; /** * Get template command handlers */ private getTemplateHandlers; /** * Run SyntropyLog audit */ private runSyntropyLogAudit; /** * Run SyntropyLog health check */ private runSyntropyLogCheck; /** * List available templates */ private listTemplates; /** * Create template */ private createTemplate; /** * Show template info */ private showTemplateInfo; /** * Run comprehensive audit */ private runComprehensiveAudit; /** * Run health check */ private runHealthCheck; } //# sourceMappingURL=simple-cli.d.ts.map