added new endpoints, implemented db singleton, started on requests manager api

This commit is contained in:
Firq 2023-10-01 19:47:35 +02:00
commit 11d4a866ef
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
13 changed files with 116 additions and 12 deletions
backend/src/config

View file

@ -0,0 +1,5 @@
# pylint: disable=too-few-public-methods
import os
class DatabaseSettings:
DATABASE_DIRECTORY = f"{os.getcwd()}/database/storage"