11 lines
185 B
Go
11 lines
185 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"joylink.club/iot/dto"
|
||
|
)
|
||
|
|
||
|
// 获取IOT日志请求响应
|
||
|
func GetIotLog(req *dto.IotServiceLogReq) *dto.IotServiceLogResp {
|
||
|
return &dto.IotServiceLogResp{}
|
||
|
}
|