Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 17:12:18 +02:00
commit 705be18347
3 changed files with 34 additions and 0 deletions

15
.gitignore vendored Normal file
View File

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

13
dub.json Normal file
View File

@ -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"
}

6
source/app.d Normal file
View File

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