mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
8 lines
146 B
Go
8 lines
146 B
Go
package service
|
|
|
|
import "geekai/core/types"
|
|
|
|
type WebsocketService struct {
|
|
Clients *types.LMap[string, *types.WsClient] // clientId => Client
|
|
}
|