34 lines
1.0 KiB
Modula-2
34 lines
1.0 KiB
Modula-2
module kong_server
|
|
|
|
go 1.23.11
|
|
|
|
toolchain go1.24.5
|
|
|
|
require (
|
|
git.company.lan/gopkg/kong v0.0.0-00010101000000-000000000000
|
|
github.com/alecthomas/colour v0.1.0
|
|
github.com/chzyer/readline v1.5.1
|
|
github.com/gliderlabs/ssh v0.3.8
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
github.com/kr/pty v1.1.8
|
|
golang.org/x/crypto v0.40.0
|
|
)
|
|
|
|
require (
|
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
|
|
github.com/creack/pty v1.1.7 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/yuin/goldmark v1.4.13 // indirect
|
|
golang.org/x/mod v0.25.0 // indirect
|
|
golang.org/x/net v0.41.0 // indirect
|
|
golang.org/x/sync v0.16.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
golang.org/x/telemetry v0.0.0-20240521205824-bda55230c457 // indirect
|
|
golang.org/x/term v0.33.0 // indirect
|
|
golang.org/x/text v0.27.0 // indirect
|
|
golang.org/x/tools v0.34.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 // indirect
|
|
)
|
|
|
|
replace git.company.lan/gopkg/kong => ../../
|