| 15 | namespace tt::service { |
| 16 | |
| 17 | std::string ServicePaths::getUserDataDirectory() const { |
| 18 | return std::format("{}{}/service/{}", PARTITION_PREFIX, file::DATA_PARTITION_NAME, manifest->id); |
| 19 | } |
| 20 | |
| 21 | std::string ServicePaths::getUserDataPath(const std::string& childPath) const { |
| 22 | assert(!childPath.starts_with('/')); |
no outgoing calls
no test coverage detected