You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
375 B
Go

8 months ago
package service
import (
"dubbo.apache.org/dubbo-go/v3/config"
_ "dubbo.apache.org/dubbo-go/v3/imports"
appConfig "github.com/exhibition-main/internal/config"
)
//var GrpcAccountClientImpl = new(account.AccountClientImpl)
func init() {
//config.SetConsumerService(GrpcAccountClientImpl)
appConfig.GetOptions()
if err := config.Load(); err != nil {
panic(err)
}
}