25 lines
325 B
Go
25 lines
325 B
Go
package service
|
|
|
|
type SensorService struct {
|
|
}
|
|
|
|
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 {
|
|
|
|
}
|