f71a293
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package main import ( "fmt" "pweb-api.abdanhafidz.com/config" "pweb-api.abdanhafidz.com/router" ) func main() { fmt.Println("Server started on ", config.TCP_ADDRESS, ", port :", config.HOST_PORT) router.StartService() }