mirror of
https://github.com/django/django.git
synced 2024-11-20 16:34:17 +00:00
10 lines
321 B
Python
10 lines
321 B
Python
|
from .article import (
|
||
|
Article, ArticleIdea, ArticleTag, ArticleTranslation, NewsArticle,
|
||
|
)
|
||
|
from .person import Country, Friendship, Group, Membership, Person
|
||
|
|
||
|
__all__ = [
|
||
|
'Article', 'ArticleIdea', 'ArticleTag', 'ArticleTranslation', 'Country',
|
||
|
'Friendship', 'Group', 'Membership', 'NewsArticle', 'Person',
|
||
|
]
|