10 lines
243 B
Python
10 lines
243 B
Python
from django.conf.urls.defaults import patterns, include, url
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
# from django.contrib import admin
|
|
# admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^', include('stacktach.url')),
|
|
)
|