(ctx context.Context, path, impersonate string)
| 122 | } |
| 123 | |
| 124 | func (f Factory) Keep(ctx context.Context, path, impersonate string) (*keep.Service, error) { |
| 125 | return newKeepWithServiceAccount(f.withAuth(ctx), path, impersonate, f.auth.ServiceAccountTokenSource) |
| 126 | } |
| 127 | |
| 128 | func (f Factory) Meet(ctx context.Context, account string) (*meet.Service, error) { |
| 129 | return NewMeet(f.withAuth(ctx), account) |