Start event loop

This commit is contained in:
Tristan B. Kildaire 2020-07-21 16:38:20 +02:00
parent aea0150693
commit 83228d8bba
3 changed files with 29 additions and 1 deletions

20
dub.selections.json Normal file
View File

@ -0,0 +1,20 @@
{
"fileVersion": 1,
"versions": {
"bformat": "1.0.8",
"botan": "1.12.18",
"botan-math": "1.0.3",
"diet-ng": "1.7.2",
"eventcore": "0.9.6",
"libasync": "0.8.6",
"libevent": "2.0.2+2.0.16",
"libutterfly": "0.0.18",
"memutils": "1.0.4",
"mir-linux-kernel": "1.0.1",
"openssl": "1.1.6+1.0.1g",
"stdx-allocator": "2.77.5",
"taggedalgebraic": "0.11.16",
"vibe-core": "1.9.2",
"vibe-d": "0.8.6"
}
}

View File

@ -1,6 +1,13 @@
import std.stdio;
import views;
import vibe.vibe;
void main()
{
writeln("Edit source/app.d to start your project.");
writeln("Starting Inggs - Butterfly webmail server");
vibe.vibe
writeln("Starting vibe event loop...");
runApplication();
}

1
source/views.d Normal file
View File

@ -0,0 +1 @@
import vibe.vibe;