Files
work_cation/global/send.go
T
2024-10-18 22:42:58 +08:00

12 lines
175 B
Go

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