// main is the entry point for the application. func main() { handlers.Routes() log.Println("listener : Started : Listening on: http://localhost:4000") http.ListenAndServe(":4000", nil) }
func init() { handlers.Routes() }