mirror of
https://github.com/mbierlee/mirage-config.git
synced 2024-11-15 12:54:01 +01:00
23 lines
555 B
D
23 lines
555 B
D
module examples.manipulation.app;
|
|
|
|
/**
|
|
* Authors:
|
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
|
* Copyright: 2022 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.json : loadJsonConfig;
|
|
|
|
import std.stdio : writeln;
|
|
|
|
void main() {
|
|
auto config = loadJsonConfig("config.json");
|
|
config.set("application.name", "Real HTTP Server");
|
|
|
|
auto applicationName = config.get("application.name");
|
|
writeln(applicationName);
|
|
}
|