No Description

main.go 701B

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