29 lines
468 B
Go
29 lines
468 B
Go
package service
|
|
|
|
import (
|
|
configM "git.loafle.net/overflow/overflow_commons_go/modules/config/model"
|
|
)
|
|
|
|
type SensorService struct {
|
|
}
|
|
|
|
func (ss *SensorService) Start(id int64) error {
|
|
return nil
|
|
}
|
|
|
|
func (ss *SensorService) Stop(id int64) error {
|
|
return nil
|
|
}
|
|
|
|
func (ss *SensorService) Add(config *configM.Config) error {
|
|
return nil
|
|
}
|
|
|
|
func (ss *SensorService) Remove(id int64) error {
|
|
return nil
|
|
}
|
|
|
|
func (ss *SensorService) Update(id int64) error {
|
|
return nil
|
|
}
|