mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
- Initialize git repository - Add comprehensive .gitignore for Go projects - Install golangci-lint v2.6.0 (latest v2) globally - Configure .golangci.yml with appropriate linters and formatters - Fix all formatting issues (gofmt) - Fix all errcheck issues (unchecked errors) - Adjust complexity threshold for validation functions - All checks passing: build, test, vet, lint
18 lines
406 B
Modula-2
18 lines
406 B
Modula-2
module github.com/damirmukimov/city_resource_graph/models
|
|
|
|
go 1.25.3
|
|
|
|
require gopkg.in/yaml.v3 v3.0.1
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/spf13/cobra v1.10.1 // indirect
|
|
github.com/spf13/pflag v1.0.9 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/testify v1.11.1
|
|
)
|