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