16 lines
416 B
Go
16 lines
416 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package storeAdmin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"server/api/storeAdmin/v1"
|
|
)
|
|
|
|
type IStoreAdminV1 interface {
|
|
Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error)
|
|
}
|