refactor: runtime service (#715)

* refactor: rename PlaybackService > RuntimeService

* refactor: stateful runtime service

* refactor: merge event loading

* refactor: roll is part of state mutation
This commit is contained in:
Carlos Valente
2024-01-16 19:54:40 +01:00
committed by GitHub
parent ee121bcfcb
commit a2950442d8
27 changed files with 2198 additions and 2467 deletions
@@ -8,6 +8,10 @@ interface Config {
lastLoadedProject: string;
}
/**
* Service manages Ontime's runtime configuration
*/
class ConfigService {
private config: Low<Config>;
private configPath: string;