2023-10-04 22:27:14 +02:00
|
|
|
module github.com/Luzifer/ots/cmd/ots-cli
|
|
|
|
|
2024-09-22 13:07:11 +02:00
|
|
|
go 1.23
|
2023-10-04 22:27:14 +02:00
|
|
|
|
2023-10-21 17:12:08 +02:00
|
|
|
replace (
|
|
|
|
github.com/Luzifer/ots/pkg/client => ../../pkg/client
|
|
|
|
github.com/Luzifer/ots/pkg/customization => ../../pkg/customization
|
|
|
|
)
|
2023-10-04 22:27:14 +02:00
|
|
|
|
|
|
|
require (
|
2025-02-12 20:15:50 +01:00
|
|
|
github.com/Luzifer/ots/pkg/client v0.0.0-20241212093302-8fadf7205f51
|
2023-10-04 22:27:14 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2024-08-27 17:36:12 +02:00
|
|
|
github.com/spf13/cobra v1.8.1
|
2023-10-04 22:27:14 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2025-02-12 20:15:50 +01:00
|
|
|
github.com/Luzifer/go-openssl/v4 v4.2.4 // indirect
|
|
|
|
github.com/Luzifer/ots/pkg/customization v0.0.0-20241212093302-8fadf7205f51 // indirect
|
2023-10-04 22:27:14 +02:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2023-10-21 17:12:08 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
2025-02-12 20:15:50 +01:00
|
|
|
github.com/spf13/pflag v1.0.6 // indirect
|
|
|
|
golang.org/x/crypto v0.33.0 // indirect
|
|
|
|
golang.org/x/sys v0.30.0 // indirect
|
2023-10-21 17:12:08 +02:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2023-10-04 22:27:14 +02:00
|
|
|
)
|