from django.conf.urls import url, include
from django.conf import settings

import booktype.urls

handler404 = 'booktype.apps.core.views.error404'
handler500 = 'booktype.apps.core.views.error500'
handler403 = 'booktype.apps.core.views.error403'
handler400 = 'booktype.apps.core.views.error400'

# Register additional URls
urlpatterns = [] + booktype.urls.urlpatterns
