Fix Goreleaser
All checks were successful
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Successful in 2m39s

This commit is contained in:
2025-01-12 19:42:26 -06:00
parent c90914351e
commit ad48f15a35
2 changed files with 31 additions and 1 deletions

1
.gitignore vendored
View File

@@ -67,7 +67,6 @@ go.work
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order

31
go.mod Normal file
View File

@@ -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
)