mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
7 lines
160 B
Python
7 lines
160 B
Python
from django.conf.urls import patterns, url
|
|
from lib.web.views import IndexView
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', IndexView.as_view(), name='index'),
|
|
)
|