7 lines
135 B
Go
7 lines
135 B
Go
|
package probe
|
||
|
|
||
|
type SensorConfigService interface {
|
||
|
AddConfig(tempFilePath string) error
|
||
|
RemoveConfig(sensorConfigID string) error
|
||
|
}
|