Base structure

- Added base repository structure
This commit is contained in:
Tristan B. Velloza Kildaire 2024-01-14 11:46:31 +02:00
commit 6a3fe90d00
3 changed files with 38 additions and 0 deletions

16
.gitignore vendored Normal file
View File

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

14
dub.json Normal file
View File

@ -0,0 +1,14 @@
{
"authors": [
"Tristan B. Velloza Kildaire"
],
"copyright": "Copyright © 2024, Tristan B. Velloza Kildaire",
"dependencies": {
"gogga": "~>2.2.1",
"msgpack-d": "~>1.0.5",
"niknaks": "~>0.8.1"
},
"description": "Experimental routing daemon",
"license": "AGPL v3",
"name": "twine"
}

8
source/twine/app.d Normal file
View File

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