25 lines
457 B
Go
25 lines
457 B
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
|
cda "git.loafle.net/commons/di-go/annotation"
|
||
|
cdr "git.loafle.net/commons/di-go/registry"
|
||
|
_ "git.loafle.net/overflow/commons-go/core/annotation"
|
||
|
)
|
||
|
|
||
|
var CrawlerServiceType = reflect.TypeOf((*CrawlerService)(nil))
|
||
|
|
||
|
func init() {
|
||
|
cdr.RegisterType(CrawlerServiceType)
|
||
|
}
|
||
|
|
||
|
type CrawlerService struct {
|
||
|
cda.TypeAnnotation `annotation:"@overflow:RPCService()"`
|
||
|
}
|
||
|
|
||
|
func (cs *CrawlerService) Accept() error {
|
||
|
|
||
|
return nil
|
||
|
}
|