mirror of
https://github.com/scratchfoundation/gargoyle.git
synced 2025-07-09 22:43:55 -04:00
9 lines
146 B
Python
9 lines
146 B
Python
from django.conf.urls.defaults import *
|
|
|
|
import nexus
|
|
|
|
nexus.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'', include(nexus.site.urls)),
|
|
)
|