awx/ansibleworks/ui/urls.py
2013-05-21 18:20:26 -04:00

10 lines
218 B
Python

# Copyright (c) 2013 AnsibleWorks, Inc.
# All Rights Reserved.
from django.conf import settings
from django.conf.urls import *
urlpatterns = patterns('ansibleworks.ui.views',
url(r'^$', 'index', name='index'),
)