Files
work_cation/global/send.go
T
2024-10-14 17:40:11 +08:00

10 lines
171 B
Go

package global
import "work_cation/models"
type SendGlobal struct {
SendChan chan *models.Message
}
var Send = &SendGlobal{SendChan: make(chan *models.Message, 1000)}