- Initial commit

This commit is contained in:
Tristan B. Velloza Kildaire 2023-05-03 11:22:45 +02:00
commit 49319e82bc
3 changed files with 36 additions and 0 deletions

17
.gitignore vendored Normal file
View File

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

13
dub.json Normal file
View File

@ -0,0 +1,13 @@
{
"authors": [
"Tristan B. Velloza Kildaire"
],
"copyright": "Tristan B. Kildaire",
"dependencies": {
"davinci": "~>0.0.3",
"tristanable": "3.1.9-beta"
},
"description": "Renaissance client library",
"license": "LGPL 2",
"name": "dante"
}

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