Files
APIPark/module/log/module.go
T

27 lines
553 B
Go

package log
import (
"context"
"reflect"
"github.com/eolinker/go-common/autowire"
"github.com/APIParkLab/APIPark/gateway"
log_dto "github.com/APIParkLab/APIPark/module/log/dto"
)
type ILogModule interface {
Save(ctx context.Context, driver string, input *log_dto.Save) error
Get(ctx context.Context, driver string) (*log_dto.LogSource, error)
}
func init() {
logModule := new(imlLogModule)
autowire.Auto[ILogModule](func() reflect.Value {
gateway.RegisterInitHandleFunc(logModule.initGateway)
return reflect.ValueOf(logModule)
})
}