TenantIDs returns all tenant IDs from the context. It should return normalized list of ordered and distinct tenant IDs (as produced by NormalizeTenantIDs). ignore stutter warning nolint:revive
(ctx context.Context)
| 35 | // |
| 36 | //nolint:revive |
| 37 | func TenantIDs(ctx context.Context) ([]string, error) { |
| 38 | return defaultResolver.TenantIDs(ctx) |
| 39 | } |
| 40 | |
| 41 | type Resolver interface { |
| 42 | // TenantID returns exactly a single tenant ID from the context. It should be |