7 lines
169 B
Go
7 lines
169 B
Go
|
package container
|
||
|
|
||
|
type CrawlerService interface {
|
||
|
Auth(crawlerName string, auth map[string]interface{}) error
|
||
|
Get(sensorConfigID string) (map[string]string, error)
|
||
|
}
|