Service logic moved to kernel (#554)

+ fix BT service file paths
This commit is contained in:
Ken Van Hoeylandt
2026-07-07 22:52:19 +02:00
committed by GitHub
parent cca7224252
commit f4f91f81d6
24 changed files with 1101 additions and 196 deletions
@@ -0,0 +1,17 @@
#include <Tactility/service/ServiceContext.h>
#include <Tactility/service/ServicePaths.h>
#include <tactility/service/service_instance.h>
namespace tt::service {
const ::ServiceManifest* ServiceContext::getManifest() const {
return service_instance_get_manifest(service_instance);
}
std::unique_ptr<ServicePaths> ServiceContext::getPaths() const {
return std::make_unique<ServicePaths>(getManifest());
}
} // namespace