16 lines
407 B
Go
16 lines
407 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package task
|
|
|
|
import (
|
|
"context"
|
|
|
|
"server/api/task/v1"
|
|
)
|
|
|
|
type ITaskV1 interface {
|
|
Ranking(ctx context.Context, req *v1.RankingReq) (res *v1.RankingRes, err error)
|
|
}
|