No Description

main.go 820B

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