server: split LoginServer, new Server interface

This commit is contained in:
2023-03-07 14:47:49 -06:00
parent 468e426a82
commit b639346605
6 changed files with 106 additions and 91 deletions

8
main.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "github.com/CPunch/GopenFusion/server"
func main() {
server := server.NewLoginServer()
server.Start()
}