(ctx context.Context, account string)
| 390 | } |
| 391 | |
| 392 | func slidesService(ctx context.Context, account string) (*slides.Service, error) { |
| 393 | runtime, err := runtimeWithService(ctx, "slides") |
| 394 | if err != nil || runtime.Services.Slides == nil { |
| 395 | return nil, serviceError(err, "slides") |
| 396 | } |
| 397 | return runtime.Services.Slides(ctx, account) |
| 398 | } |
| 399 | |
| 400 | func zoomMeetingClient(ctx context.Context, alias string) (app.ZoomMeetingClient, error) { |
| 401 | if googleapi.ReadOnly(ctx) { |