ing
This commit is contained in:
parent
fb2a8b7f18
commit
3b4553270f
5
modules/probe/service/probe/CrawlerService.go
Normal file
5
modules/probe/service/probe/CrawlerService.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package probe
|
||||
|
||||
type CrawlerService interface {
|
||||
Update()
|
||||
}
|
4
modules/probe/service/probe/DiscoveryService.go
Normal file
4
modules/probe/service/probe/DiscoveryService.go
Normal file
|
@ -0,0 +1,4 @@
|
|||
package probe
|
||||
|
||||
type DiscoveryService interface {
|
||||
}
|
5
modules/probe/service/probe/LogService.go
Normal file
5
modules/probe/service/probe/LogService.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package probe
|
||||
|
||||
type LogService interface {
|
||||
Send()
|
||||
}
|
5
modules/probe/service/probe/ProbeService.go
Normal file
5
modules/probe/service/probe/ProbeService.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package probe
|
||||
|
||||
type ProbeService interface {
|
||||
Update()
|
||||
}
|
9
modules/probe/service/probe/SensorService.go
Normal file
9
modules/probe/service/probe/SensorService.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package probe
|
||||
|
||||
type SensorService interface {
|
||||
Start()
|
||||
Stop()
|
||||
Add()
|
||||
Remove()
|
||||
Update()
|
||||
}
|
Loading…
Reference in New Issue
Block a user