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

20 lines
311 B
Go

package service
import (
"reflect"
cda "git.loafle.net/commons_go/di/annotation"
cdr "git.loafle.net/commons_go/di/registry"
)
func init() {
cdr.RegisterType(reflect.TypeOf((*LogService)(nil)), &cda.ComponentAnnotation{})
}
type LogService struct {
}
func (ls *LogService) Send() error {
return nil
}