mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 02:50:02 -03:30
7 lines
145 B
Python
7 lines
145 B
Python
from django.conf import settings
|
|
from django.conf.urls import *
|
|
|
|
urlpatterns = patterns('lib.ui.views',
|
|
url(r'^$', 'index', name='index'),
|
|
)
|