overflow_probes/service/LogService.go

20 lines
311 B
Go
Raw Normal View History

2017-12-04 11:59:51 +00:00
package service
2017-12-08 12:01:38 +00:00
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{})
}
2017-12-04 11:59:51 +00:00
type LogService struct {
}
func (ls *LogService) Send() error {
2017-12-05 10:02:58 +00:00
return nil
2017-12-04 11:59:51 +00:00
}