feat: add automatic ssl certificate

This commit is contained in:
tux
2025-03-04 00:47:01 +05:30
parent d3bc7ef1f6
commit 5fd0b10304
3 changed files with 54 additions and 14 deletions

17
go.mod
View File

@ -1,6 +1,8 @@
module github.com/tuxdotrs/trok
go 1.22.7
go 1.23.0
toolchain go1.23.6
require (
github.com/matoous/go-nanoid/v2 v2.1.0
@ -8,9 +10,17 @@ require (
github.com/spf13/cobra v1.8.1
)
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/stretchr/testify v1.10.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/text v0.22.0 // indirect
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/gofiber/fiber/v2 v2.52.6 // indirect
github.com/gofiber/fiber/v2 v2.52.6
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/compress v1.17.9 // indirect
@ -22,5 +32,6 @@ require (
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/crypto v0.35.0
golang.org/x/sys v0.30.0 // indirect
)