Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add go mod for pkg #250

Merged
merged 4 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ require (
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.18.2
github.com/stretchr/testify v1.9.0
github.com/tidbcloud/tidbcloud-cli/pkg v0.0.1
github.com/xo/usql v0.19.2
github.com/zalando/go-keyring v0.2.3
go.einride.tech/aip v0.67.1
Expand Down Expand Up @@ -118,3 +119,5 @@ require (
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)

replace github.com/tidbcloud/tidbcloud-cli/pkg => ./pkg
3 changes: 3 additions & 0 deletions pkg/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/tidbcloud/tidbcloud-cli/pkg

go 1.22
Loading