diff --git a/.gitignore b/.gitignore index fb8ef6a..dbfb9ca 100644 --- a/.gitignore +++ b/.gitignore @@ -67,7 +67,6 @@ go.work *.pdb # Kernel Module Compile Results -*.mod* *.cmd .tmp_versions/ modules.order diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6939190 --- /dev/null +++ b/go.mod @@ -0,0 +1,31 @@ +module uberbringer + +go 1.23.4 + +require ( + github.com/BurntSushi/toml v1.4.0 + github.com/foize/go.fifo v0.0.0-20130327144150-3a04cfeec121 + github.com/getsentry/sentry-go v0.31.1 + github.com/getsentry/sentry-go/echo v0.31.1 + github.com/golang-jwt/jwt/v5 v5.2.1 + github.com/justinmichaelvieira/escpos v0.1.1 + github.com/labstack/echo/v4 v4.13.3 + github.com/liamg/tml v0.7.0 + github.com/spf13/cobra v1.8.1 + golang.org/x/time v0.8.0 +) + +require ( + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/justinmichaelvieira/iconv v0.1.0 // indirect + github.com/labstack/gommon v0.4.2 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/spf13/pflag v1.0.5 // indirect + github.com/valyala/bytebufferpool v1.0.0 // indirect + github.com/valyala/fasttemplate v1.2.2 // indirect + golang.org/x/crypto v0.32.0 // indirect + golang.org/x/net v0.33.0 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/text v0.21.0 // indirect +)