Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 17:12:55 +02:00
commit 97d6125e9a
3 changed files with 30 additions and 0 deletions

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
.dub
docs.json
__dummy.html
docs/
/libdnet
libdnet.so
libdnet.dylib
libdnet.dll
libdnet.a
libdnet.lib
libdnet-test-*
*.exe
*.o
*.obj
*.lst

9
dub.json Normal file
View File

@ -0,0 +1,9 @@
{
"authors": [
"Tristan B. Kildaire"
],
"copyright": "Copyright © 2021, Tristan B. Kildaire",
"description": "Client-side DNET API",
"license": "LGPLv2",
"name": "libdnet"
}

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.");
}