Client initial commit.

This commit is contained in:
2024-12-10 18:55:23 -05:00
commit ca681f08cd
20 changed files with 870 additions and 0 deletions

13
server/main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"fmt"
"server/server"
)
func main() {
fmt.Println("Server v0.04")
server := server.NewServer()
server.Start(501)
}