Files
awx/awx/ui/urls.py
2013-06-23 13:21:02 -04:00

10 lines
209 B
Python

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