crawler-go/crawler.go
crusader bae05dbc82 ing
2018-06-21 19:32:16 +09:00

13 lines
255 B
Go

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