17 lines
486 B
Go
17 lines
486 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"server/api/admin/v1"
|
|
)
|
|
|
|
type IAdminV1 interface {
|
|
Info(ctx context.Context, req *v1.InfoReq) (res *v1.InfoRes, err error)
|
|
EditPass(ctx context.Context, req *v1.EditPassReq) (res *v1.EditPassRes, err error)
|
|
}
|