-
Notifications
You must be signed in to change notification settings - Fork 98
docs: Generate samples for simple RPCs #4095
New issue
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4095 +/- ##
==========================================
+ Coverage 94.78% 94.80% +0.01%
==========================================
Files 182 182
Lines 6885 6885
==========================================
+ Hits 6526 6527 +1
+ Misses 359 358 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
0e10838 to
4d0ebcd
Compare
17e35f5 to
8b7aa34
Compare
dce3a06 to
09a96e7
Compare
09a96e7 to
d719501
Compare
| /// # use google_cloud_secretmanager_v1::client::SecretManagerService; | ||
| /// async fn sample( | ||
| /// client: &SecretManagerService | ||
| /// ) -> gax::Result<()> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I think we would prefer to use the re-exported Result over gax::Result:
# use google_cloud_secretmanager_v1::Result;
async fn sample(...) -> Result<()> { ... }
d719501 to
0f965e3
Compare

No description provided.