Files
screego/ws/event_connected.go
T
2024-09-27 16:20:15 +02:00

9 lines
156 B
Go

package ws
type Connected struct{}
func (e Connected) Execute(rooms *Rooms, current ClientInfo) error {
rooms.connected[current.ID] = true
return nil
}