mirror of
https://github.com/sortedcord/alemno-payments.git
synced 2026-07-22 04:02:49 +05:30
Implement service-based model for jobs
This commit is contained in:
5
app/db/base.py
Normal file
5
app/db/base.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from sqlalchemy.orm import DeclarativeBase
|
||||
|
||||
|
||||
class Base(DeclarativeBase):
|
||||
pass
|
||||
4
app/db/models/__init__.py
Normal file
4
app/db/models/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from app.db.base import Base
|
||||
from app.db.models.job import Job
|
||||
|
||||
__all__ = ["Base", "Job"]
|
||||
Reference in New Issue
Block a user