Added potential d code.

This commit is contained in:
Andrew Lalis 2023-01-22 19:24:12 +01:00
parent 728b611303
commit 0cc998f58e
3 changed files with 33 additions and 0 deletions

15
gymboard-cdn/.gitignore vendored Normal file
View File

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

12
gymboard-cdn/dub.json Normal file
View File

@ -0,0 +1,12 @@
{
"authors": [
"Andrew Lalis"
],
"copyright": "Copyright © 2023, Andrew Lalis",
"dependencies": {
"handy-httpd": "~>4.0.2"
},
"description": "Content delivery network for Gymboard.",
"license": "proprietary",
"name": "gymboard-cdn"
}

View File

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