1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00
awx/lib/ui/urls.py
2013-05-08 11:41:00 -04:00

7 lines
145 B
Python

from django.conf import settings
from django.conf.urls import *
urlpatterns = patterns('lib.ui.views',
url(r'^$', 'index', name='index'),
)