package websocket

type Server struct {
	GetUserID func(token string) (string, error)
	OnMessage func(userID string, msg string)
}
