9 lines
149 B
Python
9 lines
149 B
Python
"""News app urlconf."""
|
|
from news.urls.common import common_urlpatterns
|
|
|
|
app_name = 'news'
|
|
|
|
urlpatterns = []
|
|
|
|
urlpatterns.extend(common_urlpatterns)
|