summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 13:31:28 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 13:31:28 +0200
commit4d3aa54f80f4ac3bdf927e3746478cec3bcb35e9 (patch)
tree6cb0d249f3c2a1de01365dd78d97916297d07f9f /app
Initial commit
Diffstat (limited to 'app')
-rw-r--r--app/auth/__init__.py0
-rw-r--r--app/auth/jwt.py0
-rw-r--r--app/auth/login.py0
-rw-r--r--app/auth/register.py0
-rw-r--r--app/main.py10
-rw-r--r--app/models/__init__.py0
-rw-r--r--app/models/auth.py0
-rw-r--r--app/models/models.py0
-rw-r--r--app/models/upload.py0
-rw-r--r--app/routes/__init__.py0
-rw-r--r--app/routes/routes.py0
-rw-r--r--app/schemas/__init__.py0
-rw-r--r--app/schemas/auth.py0
-rw-r--r--app/schemas/schemas.py0
-rw-r--r--app/utils/__init__.py0
15 files changed, 10 insertions, 0 deletions
diff --git a/app/auth/__init__.py b/app/auth/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/auth/__init__.py
diff --git a/app/auth/jwt.py b/app/auth/jwt.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/auth/jwt.py
diff --git a/app/auth/login.py b/app/auth/login.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/auth/login.py
diff --git a/app/auth/register.py b/app/auth/register.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/auth/register.py
diff --git a/app/main.py b/app/main.py
new file mode 100644
index 0000000..701c030
--- /dev/null
+++ b/app/main.py
@@ -0,0 +1,10 @@
+from fastapi import FastAPI
+
+app = FastAPI()
+
+
+@app.get("/")
+def read_root():
+
+ msg = "Hello Berries!"
+ return {"message": msg}
diff --git a/app/models/__init__.py b/app/models/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/models/__init__.py
diff --git a/app/models/auth.py b/app/models/auth.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/models/auth.py
diff --git a/app/models/models.py b/app/models/models.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/models/models.py
diff --git a/app/models/upload.py b/app/models/upload.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/models/upload.py
diff --git a/app/routes/__init__.py b/app/routes/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/routes/__init__.py
diff --git a/app/routes/routes.py b/app/routes/routes.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/routes/routes.py
diff --git a/app/schemas/__init__.py b/app/schemas/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/schemas/__init__.py
diff --git a/app/schemas/auth.py b/app/schemas/auth.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/schemas/auth.py
diff --git a/app/schemas/schemas.py b/app/schemas/schemas.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/schemas/schemas.py
diff --git a/app/utils/__init__.py b/app/utils/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/utils/__init__.py