Skip to content

Commit d25404b

Browse files
committed
fix: go.mod replace to reference local module
We need to work in multiple orgs with different private repos, this is a temporary solution until we make the main repo public.
1 parent c9cb6b9 commit d25404b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

go.mod

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/modelcontextprotocol/registry
33
go 1.23.0
44

55
require (
6+
github.com/caarlos0/env/v11 v11.3.1
67
github.com/google/uuid v1.6.0
78
github.com/swaggo/files v1.0.1
89
github.com/swaggo/http-swagger v1.3.4
@@ -11,7 +12,6 @@ require (
1112

1213
require (
1314
github.com/KyleBanks/depth v1.2.1 // indirect
14-
github.com/caarlos0/env/v11 v11.3.1 // indirect
1515
github.com/go-openapi/jsonpointer v0.21.1 // indirect
1616
github.com/go-openapi/jsonreference v0.21.0 // indirect
1717
github.com/go-openapi/spec v0.21.0 // indirect
@@ -33,3 +33,6 @@ require (
3333
golang.org/x/tools v0.32.0 // indirect
3434
gopkg.in/yaml.v3 v3.0.1 // indirect
3535
)
36+
37+
// temporary replace directive to use local version of the module so we can share in different orgs
38+
replace github.com/modelcontextprotocol/registry => ./

0 commit comments

Comments
 (0)