mirage-config/examples/manipulation/app.d
2023-01-11 02:06:41 +03:00

23 lines
554 B
D

module examples.manipulation.app;
/**
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2022-2023 Mike Bierlee
* License:
* This software is licensed under the terms of the MIT license.
* The full terms of the license can be found in the LICENSE file.
*/
import mirage.config : loadConfig;
import std.stdio : writeln;
void main() {
auto config = loadConfig("config.json");
config.set("application.name", "Real HTTP Server");
auto applicationName = config.get("application.name");
writeln(applicationName);
}