Update backend/db.py
Browse files- backend/db.py +1 -1
backend/db.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import aiosqlite
|
| 2 |
import json
|
| 3 |
|
| 4 |
-
DB_PATH = "/data/jobs.db"
|
| 5 |
|
| 6 |
async def init_db():
|
| 7 |
async with aiosqlite.connect(DB_PATH) as db:
|
|
|
|
| 1 |
import aiosqlite
|
| 2 |
import json
|
| 3 |
|
| 4 |
+
DB_PATH = "/app/data/jobs.db"
|
| 5 |
|
| 6 |
async def init_db():
|
| 7 |
async with aiosqlite.connect(DB_PATH) as db:
|