Replaced cache with opts in several structs

This commit is contained in:
andronache
2021-03-16 10:46:03 +02:00
committed by Dan Christian Bogos
parent 83d9c67a77
commit 22f207441e
27 changed files with 116 additions and 147 deletions

View File

@@ -759,13 +759,6 @@ func (tID *TenantID) TenantID() string {
return ConcatenatedKey(tID.Tenant, tID.ID)
}
type TenantIDWithCache struct {
Tenant string
ID string
Cache *string
Opts map[string]interface{}
}
func (tID *TenantIDWithOpts) TenantIDConcatenated() string {
return ConcatenatedKey(tID.Tenant, tID.ID)
}