(ctx context.Context, account string)
| 78 | } |
| 79 | |
| 80 | func (f Factory) Chat(ctx context.Context, account string) (*chat.Service, error) { |
| 81 | return NewChat(f.withAuth(ctx), account) |
| 82 | } |
| 83 | |
| 84 | func (f Factory) Classroom(ctx context.Context, account string) (*classroom.Service, error) { |
| 85 | return NewClassroom(f.withAuth(ctx), account) |
no test coverage detected