mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-08-01 23:33:42 +00:00
* Fix crash when concurrent close channel * Add ErrCh to notify client's goruntine to exit * Add WaitGroup to wait for all goruntine to exit * Call Signal on error --------- Co-authored-by: 杨赫然 <heran.yang@seafile.com>
22 lines
626 B
Modula-2
22 lines
626 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/dgrijalva/jwt-go v3.2.0+incompatible
|
|
github.com/go-sql-driver/mysql v1.5.0
|
|
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.0.0-20211019181941-9d821ace8654 //indirect
|
|
)
|