stacktach/urls.py
2012-02-29 07:46:37 -06:00

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')),
)