pweb-api / main.go
lifedebugger's picture
Deploy files from GitHub repository
f71a293
raw
history blame contribute delete
243 Bytes
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()
}