-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
40 lines (29 loc) · 793 Bytes
/
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
package main
import (
"golang-crud/config"
"golang-crud/controller"
"golang-crud/helper"
"golang-crud/model"
"golang-crud/repository"
"golang-crud/router"
"golang-crud/service"
"net/http"
"github.com/go-playground/validator/v10"
"github.com/rs/zerolog/log"
)
func main() {
log.Info().Msg("Started Server!")
db := config.DatabaseConnection()
validate := validator.New()
db.Table("tags").AutoMigrate(&model.Tags{})
tagsRepository := repository.NewTagsRepositoryImpl(db)
tagsService := service.NewTagsServiceImpl(tagsRepository, validate)
tagsController := controller.NewTagsController(tagsService)
routes := router.NewRouter(tagsController)
server := &http.Server{
Addr: ":8888",
Handler: routes,
}
err := server.ListenAndServe()
helper.ErrorPanic(err)
}