mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
35 lines
750 B
Go
35 lines
750 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
_ "github.com/joho/godotenv/autoload"
|
|
|
|
Config "micrach/config"
|
|
Controllers "micrach/controllers"
|
|
// Db "micrach/db"
|
|
// Utils "micrach/utils"
|
|
)
|
|
|
|
func main() {
|
|
Config.Init()
|
|
// Db.Init()
|
|
// defer Db.Pool.Close()
|
|
gin.SetMode(Config.App.Env)
|
|
|
|
router := gin.Default()
|
|
router.LoadHTMLGlob("templates/*.html")
|
|
router.Static("/uploads", "./uploads")
|
|
router.GET("/", Controllers.GetThreads)
|
|
router.POST("/", Controllers.CreateThread)
|
|
router.GET("/:threadId", Controllers.GetThread)
|
|
router.POST("/:threadId", Controllers.UpdateThread)
|
|
|
|
log.Println("port", Config.App.Port, "- online")
|
|
log.Println("all systems nominal")
|
|
|
|
router.Run(":" + strconv.Itoa(Config.App.Port))
|
|
}
|