We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
service provider improvement todo list:
func (p *Provider) GetUser(userID int64) (*User, error) { ... return nil, nil }
func (p *Provider) SetUserInfo(userInfo *User) error { ... return nil }
func (p *Provider) TakeUser() (*User, error) { ... return &User{} }
conMap, _ := config.Load() res, err := conMap["com.ikurento.user.UserProvider"].GetRPCService("com.ikurento.user.UserProvider").(*UserProvider).Echo(context.TODO(), "OK") if err != nil { panic(err) }
to
providerInstance, _ := config.Build() res, err := providerInstance.GetRPCService("com.ikurento.user.UserProvider").(*UserProvider).Echo(context.TODO(), "OK") if err != nil { panic(err) }
The text was updated successfully, but these errors were encountered:
Merge pull request apache#59 from PhilYue/feature/direct/readme
e575e56
add: direct README
Successfully merging a pull request may close this issue.
service provider improvement todo list:
to
The text was updated successfully, but these errors were encountered: