Files
inp2025/handlers/game/socketState.go
2025-11-10 14:52:16 +08:00

15 lines
181 B
Go

package game
import (
"inp2025/tcp"
"inp2025/utils"
)
func (self *Handlers) SocketState(
w tcp.ResponseWriter,
req *tcp.Request,
) error {
// TODO
return utils.Success(w)
}