updated layout - make server as package

This commit is contained in:
nahakubuilde
2025-05-30 07:30:59 +01:00
parent 9c1f2fcc3c
commit aa7285af39
10 changed files with 41 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ from sqlalchemy import create_engine, Column, Integer, String, DateTime, Text, B
from sqlalchemy.orm import declarative_base, sessionmaker
from datetime import datetime
import bcrypt
from config import DATABASE_URL
from .config import DATABASE_URL
# SQLAlchemy setup
Base = declarative_base()