mirror of https://github.com/django/django.git
11 lines
366 B
Python
11 lines
366 B
Python
from .article import (
|
|
Article, ArticleIdea, ArticleTag, ArticleTranslation, NewsArticle,
|
|
)
|
|
from .empty_join import SlugPage
|
|
from .person import Country, Friendship, Group, Membership, Person
|
|
|
|
__all__ = [
|
|
'Article', 'ArticleIdea', 'ArticleTag', 'ArticleTranslation', 'Country',
|
|
'Friendship', 'Group', 'Membership', 'NewsArticle', 'Person', 'SlugPage',
|
|
]
|