telegram-commerce/router/product.go

7 lines
143 B
Go
Raw Normal View History

2023-10-25 21:54:32 +00:00
package router
func (api API) ProductRouter() {
category := api.Router.Group("/products")
category.GET("/", api.Controller.GetProducts())
}