mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
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'),
|
|
)
|