Files
ServiceUpdater/UpdaterConfig.cs
Leon Hoppe a341b9cfda
All checks were successful
Updater CI/CD / publish (push) Successful in 2m18s
Implemented update functionallity
2026-02-24 18:49:23 +01:00

5 lines
147 B
C#

namespace ServiceUpdater;
public sealed class UpdaterConfig(IConfiguration config) {
public string ServicesRoot => config["Root"] ?? "/";
}