mirror of
https://github.com/APIParkLab/APIPark.git
synced 2026-06-26 16:01:56 +08:00
19 lines
378 B
Go
19 lines
378 B
Go
package team_member
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"github.com/eolinker/go-common/autowire"
|
|
|
|
"github.com/APIParkLab/APIPark/stores/team"
|
|
"github.com/eolinker/ap-account/service/member"
|
|
)
|
|
|
|
type ITeamMemberService member.IMemberService
|
|
|
|
func init() {
|
|
autowire.Auto[ITeamMemberService](func() reflect.Value {
|
|
return reflect.ValueOf(new(member.Service[team.ITeamMemberStore]))
|
|
})
|
|
}
|