8 lines
147 B
Python
8 lines
147 B
Python
"""
|
|
ORM models for bot (imported from shared)
|
|
"""
|
|
from shared.database.models import User, Task, Download
|
|
|
|
__all__ = ["User", "Task", "Download"]
|
|
|