forked from devsmranjan/golang-fiber-basic-todo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
60 lines (48 loc) · 1.16 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"log"
"github.com/devsmranjan/golang-fiber-basic-todo-app/config"
"github.com/devsmranjan/golang-fiber-basic-todo-app/routes"
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/logger"
"github.com/joho/godotenv"
)
func setupRoutes(app *fiber.App) {
// give response when at /
app.Get("/", func(c *fiber.Ctx) error {
return c.Status(fiber.StatusOK).JSON(fiber.Map{
"success": true,
"message": "You are at the endpoint 😉",
})
})
// api group
api := app.Group("/api")
// give response when at /api
api.Get("", func(c *fiber.Ctx) error {
return c.Status(fiber.StatusOK).JSON(fiber.Map{
"success": true,
"message": "You are at the api endpoint 😉",
})
})
// send todos route group to TodoRoutes of routes package
routes.TodoRoute(api.Group("/todos"))
}
func main() {
app := fiber.New()
app.Use(logger.New())
// dotenv
err := godotenv.Load()
if err != nil {
log.Fatal("Error loading .env file")
}
// config db
config.ConnectDB()
// setup routes
setupRoutes(app)
// Listen on server 8000 and catch error if any
err = app.Listen(":8000")
// handle error
if err != nil {
panic(err)
}
}