| 10 | ) |
| 11 | |
| 12 | type CachedIdentityService struct { |
| 13 | inner IdentityService |
| 14 | cache *cache.Cache |
| 15 | } |
| 16 | |
| 17 | func (c *CachedIdentityService) GetTenantID(tenantName string) (string, error) { |
| 18 | return c.inner.GetTenantID(tenantName) |
nothing calls this directly
no outgoing calls
no test coverage detected