59 lines
2.4 KiB
Modula-2
59 lines
2.4 KiB
Modula-2
module chaitin.cn/patronus/safeline-2/management/webserver
|
|
|
|
go 1.21
|
|
|
|
toolchain go1.21.3
|
|
|
|
require (
|
|
chaitin.cn/dev/go/errors v0.0.0-20210324055134-dc5247602af6
|
|
chaitin.cn/dev/go/log v0.0.0-20221220104336-05125760b10c
|
|
chaitin.cn/dev/go/settings v0.0.0-20221220104336-05125760b10c
|
|
github.com/gin-contrib/sessions v0.0.5
|
|
github.com/gin-gonic/gin v1.10.0
|
|
github.com/pquerna/otp v1.4.0
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/rogpeppe/go-internal v1.10.0
|
|
github.com/sirupsen/logrus v1.4.2
|
|
google.golang.org/grpc v1.65.0
|
|
gorm.io/datatypes v1.1.1
|
|
gorm.io/driver/postgres v1.5.9
|
|
gorm.io/gorm v1.25.10
|
|
)
|
|
|
|
require (
|
|
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
|
|
github.com/bytedance/sonic v1.11.6 // indirect
|
|
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.20.0 // indirect
|
|
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/gorilla/context v1.1.1 // indirect
|
|
github.com/gorilla/securecookie v1.1.1 // indirect
|
|
github.com/gorilla/sessions v1.2.1 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
|
|
github.com/jackc/pgx/v5 v5.5.5 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.12 // indirect
|
|
golang.org/x/arch v0.8.0 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
golang.org/x/text v0.15.0 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
gorm.io/driver/mysql v1.4.7 // indirect
|
|
)
|