feat(services): implements dynamic service loading#36
Conversation
The "Why": Hot-Reloading SupportIn the main branch, the service However, this PR introduces the ability to hot-reload the services at runtime (via the new Because the configuration can now be replaced at any time, the old strings might be dropped from memory. Therefore, the application can no longer hand out The Trade-offsTo fix the compiler errors caused by losing the
ConclusionThe verbosity you are seeing is the standard "Rust tax" for moving from a static, read-only configuration to a dynamic, mutable configuration. Given that these |

WIP