-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
46 lines (38 loc) · 1.03 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
package main
import (
"context"
"log/slog"
"os"
"github.com/gin-gonic/gin"
"github.tools.sap/I546075/empty_project/pkg/config"
"github.tools.sap/I546075/empty_project/pkg/database"
"github.tools.sap/I546075/empty_project/pkg/handlers"
"github.tools.sap/I546075/empty_project/pkg/services"
)
func main() {
config.InitConfig()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
database, err := database.NewMongoDB(ctx)
if err != nil {
slog.Error("Failed to initialize the database: %v", err)
os.Exit(1)
}
controller := services.NewProductService(database)
handler := handlers.NewProductHandler(controller)
r := gin.Default()
v1 := r.Group("/api/v1")
{
products := v1.Group("/products")
{
products.GET("", handler.GetProducts)
products.GET(":id", handler.GetProductByID)
products.POST("", handler.CreateProduct)
products.PUT("/:id", handler.UpdateProductByID)
}
}
if err := r.Run(config.Config().Server.Port); err != nil {
slog.Error("Server stopped: %v", err)
os.Exit(1)
}
}