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