16 lines
446 B
Go
16 lines
446 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package statistic
|
|
|
|
import (
|
|
"context"
|
|
|
|
"server/api/statistic/v1"
|
|
)
|
|
|
|
type IStatisticV1 interface {
|
|
GetOnlineDevice(ctx context.Context, req *v1.GetOnlineDeviceReq) (res *v1.GetOnlineDeviceRes, err error)
|
|
}
|