No Description

main.go 762B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package main
  2. import (
  3. "log"
  4. "net/http"
  5. "strconv"
  6. "./config"
  7. "./core/database"
  8. req "./core/request"
  9. res "./core/response"
  10. "./routes"
  11. errorHandler "./src/lib/error"
  12. )
  13. func main() {
  14. dbConfig := database.Config{
  15. config.DATABASE_HOST,
  16. config.DATABASE_PORT,
  17. config.DATABASE_USER,
  18. config.DATABASE_PASS,
  19. config.DATABASE_SCHEMA,
  20. }
  21. database.Init(dbConfig)
  22. http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
  23. var Errors errorHandler.Errors
  24. res.SetResponseWriter(w)
  25. req.SetRequest(r)
  26. if !database.IsConnected {
  27. Errors.InternalError("Conexão com a base de dados falhou!")
  28. res.JSON(Errors)
  29. return
  30. }
  31. routes.Routes.Match(w, r)
  32. })
  33. log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
  34. }