2017-12-02 03:13:08 +00:00
|
|
|
package service
|
|
|
|
|
2017-12-04 11:59:51 +00:00
|
|
|
type ProbeService struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ps *ProbeService) Start() error {
|
2017-12-05 10:02:58 +00:00
|
|
|
return nil
|
2017-12-04 11:59:51 +00:00
|
|
|
}
|
|
|
|
func (ps *ProbeService) Stop() error {
|
2017-12-05 10:02:58 +00:00
|
|
|
return nil
|
2017-12-04 11:59:51 +00:00
|
|
|
}
|
|
|
|
func (ps *ProbeService) Update() error {
|
2017-12-05 10:02:58 +00:00
|
|
|
return nil
|
2017-12-04 11:59:51 +00:00
|
|
|
}
|