mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-09-06 11:22:04 +00:00
7 lines
174 B
Python
7 lines
174 B
Python
from django.conf.urls.defaults import *
|
|
from pyi2phosts.search.views import SearchedHostsListsView
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', SearchedHostsListsView.as_view()),
|
|
)
|