urls.py 163 Bytes
Newer Older
1 2 3
"""
Urls for the django_comment_client.
"""
4
from django.conf.urls import include, url
stv committed
5

6
urlpatterns = [
7
    url(r'', include('django_comment_client.base.urls')),
8
]