Added API files.

This commit is contained in:
Andrew Lalis 2024-07-23 17:20:10 -04:00
commit 84e2e16a67
4 changed files with 44 additions and 0 deletions

16
finnow-api/.gitignore vendored Normal file
View File

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

12
finnow-api/dub.json Normal file
View File

@ -0,0 +1,12 @@
{
"authors": [
"Andrew Lalis"
],
"copyright": "Copyright © 2024, Andrew Lalis",
"dependencies": {
"handy-httpd": "~>8.4.0"
},
"description": "Backend API for Finnow.",
"license": "proprietary",
"name": "finnow-api"
}

View File

@ -0,0 +1,10 @@
{
"fileVersion": 1,
"versions": {
"handy-httpd": "8.4.0",
"httparsed": "1.2.1",
"path-matcher": "1.2.0",
"slf4d": "3.0.1",
"streams": "3.5.0"
}
}

6
finnow-api/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.");
}