123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package main
- import (
- "log"
- "net/http"
- "strconv"
- "./core/database"
- "./core/errorHandler"
- "./core/request"
- "./core/response"
- "./src/lib/auth"
- )
- func main() {
- initDatabase()
- initAuthService()
- http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
- var Errors errorHandler.Errors
- response.SetResponseWriter(w)
- request.SetRequest(r)
- if !database.IsConnected {
- Errors.InternalError("Conexão com a base de dados falhou!")
- response.JSON(Errors)
- return
- }
- Routes.Match(w, r)
- })
- log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
- }
- func initDatabase() {
- database.Init(
- database.Config{
- DATABASE_HOST,
- DATABASE_PORT,
- DATABASE_USER,
- DATABASE_PASS,
- DATABASE_SCHEMA,
- })
- }
- func initAuthService() {
- auth.Config(
- auth.ServiceConfig{
- AUTHENTICATION_SERVICE,
- })
- }
|