17 lines
497 B
Go
17 lines
497 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package user_center
|
|
|
|
import (
|
|
"context"
|
|
|
|
"kami/api/user_center/v1"
|
|
)
|
|
|
|
type IUserLoginV1 interface {
|
|
Login(ctx context.Context, req *v1.LoginReq) (res *v1.LoginRes, err error)
|
|
Logout(ctx context.Context, req *v1.LogoutReq) (res *v1.LogoutRes, err error)
|
|
}
|
