1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package controllers
|
| import (
| "basic.com/valib/bhomeclient.git"
| "basic.com/valib/logger.git"
| )
|
| type DeviceController struct {
|
| }
|
| func (dc *DeviceController) SyncDeviceToSaas(h *bhomeclient.WrapperHandler, c *bhomeclient.Request) *bhomeclient.Reply {
| logger.Debug("参数",c)
| return &bhomeclient.Reply{Success:false, Msg:"同步失败"}
| }
|
|