审查视图

pkg/application/factory/api.go 398 字节
庄敏学 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package factory

import (
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/infrastructure/serviceGateway"
)

func UCenterApi() domain.UCenterApi {
	return serviceGateway.NewHttpLibUCenterApiServiceGateway()
}

func BusinessAdminApi() domain.BusinessAdminApi {
	return serviceGateway.NewHttpLibBusinessAdminServiceGateway()
}