From 23c4e8513422a4b4d87f23d179a5655ab5d8d17e Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sun, 21 Jun 2020 17:27:20 +0200 Subject: [PATCH] Added module structure and stub modules. --- dub.selections.json | 6 ++++++ source/app.d | 6 ------ source/tristanable/manager.d | 4 ++++ source/tristanable/watcher.d | 4 ++++ 4 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 dub.selections.json delete mode 100644 source/app.d create mode 100644 source/tristanable/manager.d create mode 100644 source/tristanable/watcher.d diff --git a/dub.selections.json b/dub.selections.json new file mode 100644 index 0000000..f26dfa1 --- /dev/null +++ b/dub.selections.json @@ -0,0 +1,6 @@ +{ + "fileVersion": 1, + "versions": { + "bformat": "1.0.8" + } +} diff --git a/source/app.d b/source/app.d deleted file mode 100644 index c3eec7f..0000000 --- a/source/app.d +++ /dev/null @@ -1,6 +0,0 @@ -import std.stdio; - -void main() -{ - writeln("Edit source/app.d to start your project."); -} diff --git a/source/tristanable/manager.d b/source/tristanable/manager.d new file mode 100644 index 0000000..2d573c9 --- /dev/null +++ b/source/tristanable/manager.d @@ -0,0 +1,4 @@ +module tristanable.manager; + +/* TODO: Watcher class to watch for stuff, and add to manager's queues */ +/* TODO: maneger class to use commands on, enqueue and wait for dequeue */ diff --git a/source/tristanable/watcher.d b/source/tristanable/watcher.d new file mode 100644 index 0000000..12a5ded --- /dev/null +++ b/source/tristanable/watcher.d @@ -0,0 +1,4 @@ +module tristanable.watcher; + +/* TODO: Watcher class to watch for stuff, and add to manager's queues */ +/* TODO: maneger class to use commands on, enqueue and wait for dequeue */