(ctx context.Context, path, impersonate string)
| 222 | } |
| 223 | |
| 224 | func keepServiceWithServiceAccount(ctx context.Context, path, impersonate string) (*keepapi.Service, error) { |
| 225 | runtime, err := runtimeWithService(ctx, "keep") |
| 226 | if err != nil || runtime.Services.Keep == nil { |
| 227 | return nil, serviceError(err, "keep") |
| 228 | } |
| 229 | return runtime.Services.Keep(ctx, path, impersonate) |
| 230 | } |
| 231 | |
| 232 | func meetService(ctx context.Context, account string) (*meetapi.Service, error) { |
| 233 | runtime, err := runtimeWithService(ctx, "meet") |