crawler-go/crawler.go
crusader 500a55f075 ing
2018-04-19 16:16:36 +09:00

13 lines
251 B
Go

package crawler
import (
ocsm "git.loafle.net/overflow/commons-go/sensorconfig/model"
)
type Crawler interface {
Name() string
String() string
Auth(auth map[string]string) error
Get(sensorConfig *ocsm.SensorConfig) (map[string]string, error)
}