1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-02-03 10:24:20 +00:00

7 lines
174 B
Python

from django.conf.urls.defaults import *
from pyi2phosts.search.views import SearchedHostsListsView
urlpatterns = patterns('',
(r'^$', SearchedHostsListsView.as_view()),
)