Refactors filesystem service

This commit is contained in:
Rune Harlyk
2024-11-07 16:45:14 +01:00
committed by Rune Harlyk
parent 3a3de53752
commit fd652bd967
13 changed files with 145 additions and 94 deletions
+1 -5
View File
@@ -20,11 +20,10 @@
#include <AnalyticsService.h>
#include <BatteryService.h>
#include <FileExplorerService.h>
#include <filesystem.h>
#include <DownloadFirmwareService.h>
#include <Peripherals.h>
#include <ServoController.h>
#include <ESPFS.h>
#include <ESPmDNS.h>
#include <LEDService.h>
#include <EventSocket.h>
@@ -81,8 +80,6 @@ class ESP32SvelteKit {
TaskManager *getTaskManager() { return &_taskManager; }
FileExplorer *getFileExplorer() { return &_fileExplorer; }
#if FT_ENABLED(USE_MOTION)
MotionService *getMotionService() { return &_motionService; }
#endif
@@ -127,7 +124,6 @@ class ESP32SvelteKit {
AnalyticsService _analyticsService;
#endif
TaskManager _taskManager;
FileExplorer _fileExplorer;
#if FT_ENABLED(USE_MOTION)
MotionService _motionService;
#endif