76 lines
3.2 KiB
Modula-2
76 lines
3.2 KiB
Modula-2
module ems.agt
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/go-admin-team/go-admin-core v1.3.12-0.20221121065133-27b7dbe27a8f
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/go-sql-driver/mysql v1.7.1
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/gosnmp/gosnmp v1.35.0
|
|
github.com/lestrrat/go-file-rotatelogs v0.0.0-20180223000712-d3151e2a480f
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/redis/go-redis/v9 v9.1.0
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
github.com/shirou/gopsutil v3.21.11+incompatible
|
|
github.com/shirou/gopsutil/v3 v3.23.7
|
|
github.com/spf13/afero v1.9.5
|
|
github.com/spf13/viper v1.16.0
|
|
golang.org/x/crypto v0.12.0
|
|
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
xorm.io/xorm v1.3.2
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-sqlite3 v1.14.15 // indirect
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
|
github.com/onsi/gomega v1.21.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/fastly/go-utils v0.0.0-20180712184237-d95a45783239 // indirect
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/goccy/go-json v0.10.2 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/lestrrat/go-envload v0.0.0-20180220120943-6ed08b54a570 // indirect
|
|
github.com/lestrrat/go-strftime v0.0.0-20180220042222-ba3bf9c1d042 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/mojocn/base64Captcha v1.3.5
|
|
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/spf13/cast v1.5.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/syndtr/goleveldb v1.0.0 // indirect
|
|
github.com/tebeka/strftime v0.1.5 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.11 // indirect
|
|
github.com/tklauser/numcpus v0.6.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.3 // indirect
|
|
golang.org/x/image v0.5.0 // indirect
|
|
golang.org/x/net v0.10.0 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
golang.org/x/text v0.12.0 // indirect
|
|
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
xorm.io/builder v0.3.11-0.20220531020008-1bd24a7dc978 // indirect
|
|
)
|