Files
awx/awx/ui/urls.py
2014-01-02 11:51:43 -05:00

10 lines
209 B
Python

# Copyright (c) 2014 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'),
)