mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 01:08:24 +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
|
|
}
|