25 lines
314 B
Go
25 lines
314 B
Go
|
// Code generated by goctl. DO NOT EDIT.
|
||
|
// goctl 1.8.1
|
||
|
// Source: product.proto
|
||
|
|
||
|
package product
|
||
|
|
||
|
import (
|
||
|
"github.com/zeromicro/go-zero/zrpc"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
Product interface {
|
||
|
}
|
||
|
|
||
|
defaultProduct struct {
|
||
|
cli zrpc.Client
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func NewProduct(cli zrpc.Client) Product {
|
||
|
return &defaultProduct{
|
||
|
cli: cli,
|
||
|
}
|
||
|
}
|