Added module structure and stub modules.

This commit is contained in:
Tristan B. Kildaire 2020-06-21 17:27:20 +02:00
parent 6e997db33f
commit 23c4e85134
4 changed files with 14 additions and 6 deletions

6
dub.selections.json Normal file
View File

@ -0,0 +1,6 @@
{
"fileVersion": 1,
"versions": {
"bformat": "1.0.8"
}
}

View File

@ -1,6 +0,0 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}

View File

@ -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 */

View File

@ -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 */