diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/auth/__init__.py | 0 | ||||
| -rw-r--r-- | app/auth/jwt.py | 0 | ||||
| -rw-r--r-- | app/auth/login.py | 0 | ||||
| -rw-r--r-- | app/auth/register.py | 0 | ||||
| -rw-r--r-- | app/main.py | 10 | ||||
| -rw-r--r-- | app/models/__init__.py | 0 | ||||
| -rw-r--r-- | app/models/auth.py | 0 | ||||
| -rw-r--r-- | app/models/models.py | 0 | ||||
| -rw-r--r-- | app/models/upload.py | 0 | ||||
| -rw-r--r-- | app/routes/__init__.py | 0 | ||||
| -rw-r--r-- | app/routes/routes.py | 0 | ||||
| -rw-r--r-- | app/schemas/__init__.py | 0 | ||||
| -rw-r--r-- | app/schemas/auth.py | 0 | ||||
| -rw-r--r-- | app/schemas/schemas.py | 0 | ||||
| -rw-r--r-- | app/utils/__init__.py | 0 |
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 |
