This commit is contained in:
2025-06-20 17:00:56 +08:00
parent e17648cb60
commit 1b55403cd6
13 changed files with 1266 additions and 0 deletions

BIN
logic/logic Normal file

Binary file not shown.

7
logic/main.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "blazing/common/socket"
func main() {
socket.NewServer(socket.WithPort("9999")).Start()
}