refactor: service folder structure

This commit is contained in:
2025-09-13 13:11:32 +02:00
parent 00aff9df3e
commit 2971d863d0
19 changed files with 43 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
#pragma once
#include "ApiServer.h"
class Service {
public:
virtual ~Service() = default;
virtual void registerEndpoints(ApiServer& api) = 0;
virtual const char* getName() const = 0;
};