mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
60 lines
2.3 KiB
Modula-2
60 lines
2.3 KiB
Modula-2
module github.com/0xJacky/Nginx-UI
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/creack/pty v1.1.18
|
|
github.com/dustin/go-humanize v1.0.0
|
|
github.com/gin-contrib/static v0.0.1
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/go-acme/lego/v4 v4.4.0
|
|
github.com/go-co-op/gocron v1.15.0
|
|
github.com/go-playground/locales v0.13.0
|
|
github.com/go-playground/universal-translator v0.17.0
|
|
github.com/go-playground/validator/v10 v10.4.1
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/google/uuid v1.1.1
|
|
github.com/gorilla/websocket v1.4.2
|
|
github.com/hpcloud/tail v1.0.0
|
|
github.com/jpillora/overseer v1.1.6
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/shirou/gopsutil/v3 v3.21.7
|
|
github.com/spf13/cast v1.3.1
|
|
github.com/tufanbarisyildirim/gonginx v0.0.0-20230104065106-9ae864d29eed
|
|
github.com/unknwon/com v1.0.1
|
|
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
|
gopkg.in/ini.v1 v1.62.0
|
|
gorm.io/driver/sqlite v1.1.4
|
|
gorm.io/gorm v1.21.14
|
|
)
|
|
|
|
require (
|
|
github.com/StackExchange/wmi v1.2.1 // indirect
|
|
github.com/cenkalti/backoff/v4 v4.1.0 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-ole/go-ole v1.2.5 // indirect
|
|
github.com/golang/protobuf v1.3.4 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.2 // indirect
|
|
github.com/jpillora/s3 v1.1.4 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/lib/pq v1.10.7 // indirect
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.5 // indirect
|
|
github.com/miekg/dns v1.1.40 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.7 // indirect
|
|
github.com/tklauser/numcpus v0.2.3 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d // indirect
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
|
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
|
|
golang.org/x/text v0.3.4 // indirect
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|