From 84e2e16a67443a60f14d536b4507f7abd57f4db0 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Tue, 23 Jul 2024 17:20:10 -0400 Subject: [PATCH] Added API files. --- finnow-api/.gitignore | 16 ++++++++++++++++ finnow-api/dub.json | 12 ++++++++++++ finnow-api/dub.selections.json | 10 ++++++++++ finnow-api/source/app.d | 6 ++++++ 4 files changed, 44 insertions(+) create mode 100644 finnow-api/.gitignore create mode 100644 finnow-api/dub.json create mode 100644 finnow-api/dub.selections.json create mode 100644 finnow-api/source/app.d diff --git a/finnow-api/.gitignore b/finnow-api/.gitignore new file mode 100644 index 0000000..aa0d5b6 --- /dev/null +++ b/finnow-api/.gitignore @@ -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 diff --git a/finnow-api/dub.json b/finnow-api/dub.json new file mode 100644 index 0000000..52952ca --- /dev/null +++ b/finnow-api/dub.json @@ -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" +} \ No newline at end of file diff --git a/finnow-api/dub.selections.json b/finnow-api/dub.selections.json new file mode 100644 index 0000000..07cab5f --- /dev/null +++ b/finnow-api/dub.selections.json @@ -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" + } +} diff --git a/finnow-api/source/app.d b/finnow-api/source/app.d new file mode 100644 index 0000000..c3eec7f --- /dev/null +++ b/finnow-api/source/app.d @@ -0,0 +1,6 @@ +import std.stdio; + +void main() +{ + writeln("Edit source/app.d to start your project."); +}