overflow_probes/service/SensorService.go

25 lines
325 B
Go
Raw Normal View History

2017-12-02 03:13:08 +00:00
package service
type SensorService struct {
}
2017-12-04 11:59:51 +00:00
func (ss *SensorService) Start(id int64) error {
}
func (ss *SensorService) Stop(id int64) error {
}
func (ss *SensorService) Add(config *configM.Config) error {
}
func (ss *SensorService) Remove(id int64) error {
}
func (ss *SensorService) Update(id int64) error {
}