eed9a61550
改善註釋方式
8 lines
146 B
Python
8 lines
146 B
Python
from .user import User
|
|
from .post import Post
|
|
from .comment import Comment
|
|
from .like import Like
|
|
|
|
|
|
__all__ = ['User', 'Post', 'Comment', 'Like']
|