mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 09:37:55 -05:00
39 lines
916 B
Python
39 lines
916 B
Python
"""Database models"""
|
|
from app.models.user import User
|
|
from app.models.email import Email, EmailFolder
|
|
from app.models.social import Post, Comment, Like, Follow
|
|
from app.models.video import Video, VideoView, VideoLike
|
|
from app.models.file import File, Folder
|
|
from app.models.device import Device, DeviceMetric, DeviceLog
|
|
from app.models.blockchain import Block, Transaction, Wallet
|
|
from app.models.device import Device
|
|
from app.models.ai_chat import Conversation, Message
|
|
from app.models.device import Device, DeviceMetric, DeviceLog
|
|
|
|
__all__ = [
|
|
"User",
|
|
"Email",
|
|
"EmailFolder",
|
|
"Post",
|
|
"Comment",
|
|
"Like",
|
|
"Follow",
|
|
"Video",
|
|
"VideoView",
|
|
"VideoLike",
|
|
"File",
|
|
"Folder",
|
|
"Device",
|
|
"DeviceMetric",
|
|
"DeviceLog",
|
|
"Block",
|
|
"Transaction",
|
|
"Wallet",
|
|
"Device",
|
|
"Conversation",
|
|
"Message",
|
|
"Device",
|
|
"DeviceMetric",
|
|
"DeviceLog",
|
|
]
|