1
0
Fork 0
forked from External/ergo

switch to redis pubsub for ipc

adjust commands to utilize channel names
add new config variables
fix mention race condition
This commit is contained in:
CEF Server 2024-08-27 14:49:05 +00:00
parent 64ebb1f480
commit f4c03b6765
12 changed files with 220 additions and 195 deletions

View file

@ -253,6 +253,6 @@ func (km *KLineManager) loadFromDatastore() {
}
func (s *Server) loadKLines() {
s.klines = NewKLineManager(s)
func (server *Server) loadKLines() {
server.klines = NewKLineManager(server)
}