RootPath returns the root path for a block given a block id and tenantid
(blockID uuid.UUID, tenantID, prefix string)
| 369 | |
| 370 | // RootPath returns the root path for a block given a block id and tenantid |
| 371 | func RootPath(blockID uuid.UUID, tenantID, prefix string) string { |
| 372 | return path.Join(prefix, tenantID, blockID.String()) |
| 373 | } |