/** * Go Command - drift go * * Analyze Go projects: routes, error handling, interfaces, data access. * * @requirements Go Language Support */ import { Command } from 'commander'; export interface GoOptions { /** Output format */ format?: 'text' | 'json'; /** Enable verbose output */ verbose?: boolean; /** Filter by framework */ framework?: string; } /** * Create the Go command */ export declare function createGoCommand(): Command; //# sourceMappingURL=go.d.ts.map