No Description

main.go 689B

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