overflow_probes/service/CrawlerService.go
crusader 14c4949480 ing
2017-12-08 21:01:38 +09:00

33 lines
633 B
Go

package service
import (
"reflect"
cda "git.loafle.net/commons_go/di/annotation"
cdr "git.loafle.net/commons_go/di/registry"
configM "git.loafle.net/overflow/overflow_commons_go/modules/config/model"
)
func init() {
cdr.RegisterType(reflect.TypeOf((*CrawlerService)(nil)), &cda.ComponentAnnotation{})
}
type CrawlerService struct {
}
func (cs *CrawlerService) Install() error {
return nil
}
func (cs *CrawlerService) Uninstall() error {
return nil
}
func (cs *CrawlerService) Update() error {
return nil
}
func (cs *CrawlerService) Authenticate(crawler *configM.Crawler, target *configM.Target) error {
return nil
}