From c8a9c2bffed3717e469ae2328bc8198185153b2c Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 2 Oct 2020 08:41:28 +0200 Subject: [PATCH] Added config file and TODO --- TODO.md | 8 ++++++++ config.json | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 TODO.md create mode 100644 config.json diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..00f37b6 --- /dev/null +++ b/TODO.md @@ -0,0 +1,8 @@ +module TODOm; + +TODO +==== + +- [ ] Server linking via `link` command +- [ ] Multiple listeners +- [ ] Config file support \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..ddd0861 --- /dev/null +++ b/config.json @@ -0,0 +1,8 @@ +{ + "general" : { + "address" : "0.0.0.0", + "port" : "7777", + "network" : "aBasedIRCNetwork", + "name" : "MyBrandSpankingNewIRCServer" + } +} \ No newline at end of file