feat(merge_component): Add third souce for diff

Add third source (only from recipe, WIP commit) and attach debugger for checking functions
This commit is contained in:
pakintada@gmail.com 2024-03-05 11:12:03 +07:00
parent 860dc05cde
commit 1b96e298ee
8 changed files with 439 additions and 175 deletions

View file

@ -139,7 +139,7 @@ func (s *Server) createHandler() {
ur := routers.NewUserRouter(s.taoLogger, userService)
ur.Route(r)
// fmt.Println("routers", r.Routes())
// //fmt.Println("routers", r.Routes())
})
@ -169,7 +169,7 @@ func (s *Server) createHandler() {
// display all routes [DEBUG]
chi.Walk(r, func(method string, route string, handler http.Handler, middlewares ...func(http.Handler) http.Handler) error {
fmt.Println(method, " ---> ", route)
//fmt.Println(method, " ---> ", route)
return nil
})