/** * Go module package detector and reader for package-compatibility discovery. * * @experimental This API is unstable and may change without notice. * @packageDocumentation */ import type { PackageDetector, PackageReader } from "./types.js"; /** * Go module package detector. * * Scans `go.mod` in the project directory and extracts direct dependencies * from `require` directives, filtering out `// indirect` entries. * * @experimental This API is unstable and may change without notice. */ export declare const golangDetector: PackageDetector; /** * Go module package reader. * * Reads `axm.json` from `$GOPATH/pkg/mod/@/` for each * detected Go module and extracts recommendation metadata. * * @experimental This API is unstable and may change without notice. */ export declare const golangReader: PackageReader; //# sourceMappingURL=golang.d.ts.map