Events system

This commit is contained in:
Caleb Denio 2021-05-02 15:39:41 -04:00
parent ad7207c15f
commit 4dec84e9a9
7 changed files with 147 additions and 1 deletions

View file

@ -16,6 +16,6 @@ func main() {
config := jia.NewConfig()
// Start receiving messages
fmt.Println(fmt.Sprintf("Listening on port %d", config.Port))
fmt.Printf("Listening on port %d\n", config.Port)
jia.StartServer(config)
}