commit 705be183473cda2f9949b5c9164d87e650c45756 Author: Tristan B. Kildaire Date: Thu Dec 23 17:12:18 2021 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..56a8da6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +.dub +docs.json +__dummy.html +docs/ +/dnetd +dnetd.so +dnetd.dylib +dnetd.dll +dnetd.a +dnetd.lib +dnetd-test-* +*.exe +*.o +*.obj +*.lst diff --git a/dub.json b/dub.json new file mode 100644 index 0000000..d9f1731 --- /dev/null +++ b/dub.json @@ -0,0 +1,13 @@ +{ + "authors": [ + "Tristan B. Kildaire" + ], + "copyright": "Copyright © 2021, Tristan B. Kildaire", + "dependencies": { + "dlog": "~>0.0.5", + "gogga": "~>0.1.3" + }, + "description": "Official implementation of the DNET protocol for the server-side", + "license": "AGPLv3", + "name": "dnetd" +} \ No newline at end of file diff --git a/source/app.d b/source/app.d new file mode 100644 index 0000000..c3eec7f --- /dev/null +++ b/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}