Skip to content
Open
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
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ require (
github.com/emicklei/proto v1.13.3
github.com/stretchr/testify v1.10.0
gofr.dev v1.28.0
golang.org/x/text v0.20.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand Down Expand Up @@ -81,15 +83,13 @@ require (
golang.org/x/sync v0.9.0 // indirect
golang.org/x/sys v0.27.0 // indirect
golang.org/x/term v0.26.0 // indirect
golang.org/x/text v0.20.0 // indirect
golang.org/x/time v0.8.0 // indirect
google.golang.org/api v0.209.0 // indirect
google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect
google.golang.org/grpc v1.67.1 // indirect
google.golang.org/protobuf v1.35.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
modernc.org/libc v1.55.3 // indirect
modernc.org/mathutil v1.6.0 // indirect
Expand Down
5 changes: 5 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ import (

"gofr.dev/cli/gofr/bootstrap"
"gofr.dev/cli/gofr/migration"
"gofr.dev/cli/gofr/store"
"gofr.dev/cli/gofr/wrap"
)

func main() {
cli := gofr.NewCMD()

cli.SubCommand("store init", store.InitStore)

cli.SubCommand("store generate", store.GenerateStore)

cli.SubCommand("init", bootstrap.Create)

cli.SubCommand("version",
Expand Down
Loading
Loading