Please note that this is a squshed commit and the work of: Symbolist, macdiesel, nedbat, doctoryes, muzaffaryousaf and muhammad-ammar
12 lines
256 B
Python
12 lines
256 B
Python
"""
|
|
Urls for the django_comment_client.
|
|
"""
|
|
from django.conf.urls import url, patterns, include
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
|
|
url(r'forum/?', include('django_comment_client.forum.urls')),
|
|
url(r'', include('django_comment_client.base.urls')),
|
|
)
|