Files
arenax-server/api/statistic/statistic.go
2025-06-25 19:32:18 +08:00

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)
}