Initial commit
This commit is contained in:
17
server/main.go
Normal file
17
server/main.go
Normal file
@ -0,0 +1,17 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"server/core"
|
||||
)
|
||||
|
||||
func main() {
|
||||
server := core.New()
|
||||
|
||||
server.AddHandler(0, func(data []byte, client *core.Client) {
|
||||
// count := data[1]
|
||||
// fmt.Println(count)
|
||||
server.SendTo(data, client)
|
||||
})
|
||||
|
||||
server.Run(4242)
|
||||
}
|
Reference in New Issue
Block a user