package repo
import (
"context"
"voucher/internal/biz/bo"
)
type ProductRepo interface {
GetByProductNo(ctx context.Context, productNo string) (*bo.ProductBo, error)
}