telegram-commerce/app/controllers/product/controller.go

12 lines
138 B
Go
Raw Permalink Normal View History

2023-10-26 18:14:41 +00:00
package product
2023-10-25 21:54:32 +00:00
import (
"context"
"tel-commerce/ent"
)
2023-10-26 18:14:41 +00:00
type ProductController struct {
2023-10-25 21:54:32 +00:00
Ctx context.Context
Client *ent.Client
}