- Fix module path mismatch between repository URL and go.mod declaration - Update genqlient configuration to use correct module path - Regenerate GraphQL client code with updated imports 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
17 lines
451 B
Modula-2
17 lines
451 B
Modula-2
module github.com/martian-engineering/azimuth-client-go
|
|
|
|
go 1.23
|
|
|
|
require (
|
|
github.com/Khan/genqlient v0.8.0
|
|
github.com/stretchr/testify v1.10.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/vektah/gqlparser/v2 v2.5.19 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|