Skip to content

Commit

Permalink
Use Golang Version 1.17 + use command app:info
Browse files Browse the repository at this point in the history
  • Loading branch information
reindert-vetter committed Sep 6, 2021
1 parent d443f9f commit ec04141
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 341 deletions.
1 change: 1 addition & 0 deletions app/console/kernel.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func NewKernel(app inter.App) console.Kernel {
console.AppServe{},
console.LogClear{},
commands.ExampleCommand{},
console.AppInfo{},
},
FlagProviders: []func() []flag.Getter{flagGetters},
}
Expand Down
44 changes: 42 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,53 @@
module src

go 1.16
go 1.17

require (
github.com/confetti-framework/contract v0.3.0
github.com/confetti-framework/errors v0.11.0
github.com/confetti-framework/foundation v0.10.1
github.com/confetti-framework/foundation v0.10.2
github.com/confetti-framework/support v0.4.0
github.com/confetti-framework/syslog v0.1.1
github.com/confetti-framework/validation v0.1.0
golang.org/x/text v0.3.6
)

require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/confetti-framework/baker v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.10.0 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.8.1 // indirect
github.com/jackc/pgx/v4 v4.13.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.2.4 // indirect
github.com/joho/godotenv v1.3.0 // indirect
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/manifoldco/promptui v0.8.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/motemen/go-quickfix v0.0.0-20200118031250-2a6e54e79a50 // indirect
github.com/peterh/liner v1.2.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/schollz/progressbar/v3 v3.8.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/tidwall/gjson v1.7.5 // indirect
github.com/tidwall/match v1.0.3 // indirect
github.com/tidwall/pretty v1.1.0 // indirect
github.com/vigneshuvi/GoDateFormat v0.0.0-20210204121036-67364dc23c79 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/mod v0.4.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
Loading

0 comments on commit ec04141

Please # to comment.