Files
APIPark/service/system-apikey/service.go
T
2025-04-07 11:50:14 +08:00

22 lines
430 B
Go

package system_apikey
import (
"reflect"
"github.com/APIParkLab/APIPark/service/universally"
"github.com/eolinker/go-common/autowire"
)
type IAPIKeyService interface {
universally.IServiceGet[APIKey]
universally.IServiceDelete
universally.IServiceCreate[Create]
universally.IServiceEdit[Update]
}
func init() {
autowire.Auto[IAPIKeyService](func() reflect.Value {
return reflect.ValueOf(new(imlAPIKeyService))
})
}