mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 02:28:12 -03:30
10 lines
209 B
Python
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'),
|
|
)
|