No Description

main.go 567B

12345678910111213141516171819202122232425262728293031323334
  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. )
  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. routes.Routes.Match(w, r)
  25. })
  26. log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
  27. }