-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (38 loc) · 1.11 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
package main
import (
"fmt"
"food-app/config"
"food-app/controller"
"food-app/helper"
"food-app/model"
"food-app/repository"
"food-app/router"
"food-app/service"
"net/http"
"github.com/go-playground/validator/v10"
)
func main() {
loadConfig, err := config.LoadConfig(".")
if err != nil {
fmt.Println("there is error in loading configfile..", err)
return
}
db := config.ConnectDB(&loadConfig)
validate := validator.New()
db.AutoMigrate(&model.User{}, &model.OneTimePassword{})
//initialize Repository
userRepository := repository.NewUserRepositoryImpl(db)
//initialize Serice
authenticationService := service.NewAuthenticationServiceImpl(userRepository, validate)
//initialize Controller
authenticationController := controller.NewAuthenticationController(authenticationService)
usersController := controller.NewUserController(userRepository)
//Routes
routes := router.NewRouter(userRepository, authenticationController, usersController)
server := &http.Server{
Addr: loadConfig.ServerPort,
Handler: routes,
}
server_err := server.ListenAndServe()
helper.ErrorPanic(server_err)
}