Files
bl/logic/main.go

8 lines
113 B
Go
Raw Normal View History

2025-06-20 17:00:56 +08:00
package main
import "blazing/common/socket"
func main() {
socket.NewServer(socket.WithPort("9999")).Start()
}