forked from lemoncode21/golang-crud-gin-gorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
52 lines (40 loc) · 1.04 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
package main
import (
"golang-crud-gin/config"
"golang-crud-gin/controller"
_ "golang-crud-gin/docs"
"golang-crud-gin/helper"
"golang-crud-gin/model"
"golang-crud-gin/repository"
"golang-crud-gin/router"
"golang-crud-gin/service"
"net/http"
"github.com/go-playground/validator/v10"
"github.com/rs/zerolog/log"
)
// @title Tag Service API
// @version 1.0
// @description A Tag service API in Go using Gin framework
// @host localhost:8888
// @BasePath /api
func main() {
log.Info().Msg("Started Server!")
// Database
db := config.DatabaseConnection()
validate := validator.New()
db.Table("tags").AutoMigrate(&model.Tags{})
// Repository
tagsRepository := repository.NewTagsREpositoryImpl(db)
// Service
tagsService := service.NewTagsServiceImpl(tagsRepository, validate)
// Controller
tagsController := controller.NewTagsController(tagsService)
// Router
routes := router.NewRouter(tagsController)
server := &http.Server{
Addr: ":8888",
Handler: routes,
}
err := server.ListenAndServe()
helper.ErrorPanic(err)
}