5 lines
107 B
Python
5 lines
107 B
Python
__all__ = ["Base", "News", "Users"]
|
|
|
|
from .base import Base
|
|
from .news import News
|
|
from .user import Users
|