(ctx context.Context, account string)
| 162 | } |
| 163 | |
| 164 | func (f Factory) Slides(ctx context.Context, account string) (*slides.Service, error) { |
| 165 | return NewSlides(f.withAuth(ctx), account) |
| 166 | } |
| 167 | |
| 168 | func (f Factory) Tasks(ctx context.Context, account string) (*tasks.Service, error) { |
| 169 | return NewTasks(f.withAuth(ctx), account) |
no test coverage detected