mirror of
https://github.com/wisplite/raster.git
synced 2026-05-01 06:32:44 -05:00
22 lines
317 B
Go
22 lines
317 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/wisplite/raster/internal/db"
|
|
"github.com/wisplite/raster/internal/routes"
|
|
)
|
|
|
|
func main() {
|
|
if !db.Init() {
|
|
log.Fatal("failed to initialize database")
|
|
}
|
|
|
|
r := gin.Default()
|
|
|
|
routes.RegisterRoutes(r)
|
|
|
|
r.Run(":8080")
|
|
}
|