Spaces:
Running
Running
Update app/main.py
Browse files- app/main.py +5 -0
app/main.py
CHANGED
|
@@ -1,6 +1,11 @@
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
from fastapi.middleware.cors import CORSMiddleware
|
| 3 |
from app.api.routes import router
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
app = FastAPI(title="SmartNotes Backend")
|
| 6 |
|
|
|
|
| 1 |
from fastapi import FastAPI
|
| 2 |
from fastapi.middleware.cors import CORSMiddleware
|
| 3 |
from app.api.routes import router
|
| 4 |
+
import os
|
| 5 |
+
from pathlib import Path
|
| 6 |
+
|
| 7 |
+
|
| 8 |
+
|
| 9 |
|
| 10 |
app = FastAPI(title="SmartNotes Backend")
|
| 11 |
|