Spaces:
Sleeping
Sleeping
File size: 221 Bytes
94bbfdb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
package main
import (
"fmt"
"godp.abdanhafidz.com/config"
"godp.abdanhafidz.com/router"
)
func main() {
fmt.Println("Server started on ", config.TCP_ADDRESS, ", port :", config.HOST_PORT)
router.StartService()
}
|