1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-08-31 23:19:36 +00:00
Files
seafile-server/notification-server/go.mod
feiniks 738716496a Fix security issue and add go linter (#677)
* Fix security issue and add go linter

* Fix error checked by golangci-lint

* Delete jwt-go pkg

---------

Co-authored-by: 杨赫然 <heran.yang@seafile.com>
2024-08-12 14:59:45 +08:00

22 lines
586 B
Modula-2

module github.com/haiwen/seafile-server/notification-server
go 1.17
require (
github.com/dgraph-io/ristretto v0.1.0
github.com/go-sql-driver/mysql v1.5.0
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/sirupsen/logrus v1.8.1
gopkg.in/ini.v1 v1.66.2
)
require (
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/sys v0.1.0 //indirect
)