1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-08 22:07:55 +00:00
py-i2phosts/pyi2phosts/api/urls.py
Hidden Z 3880aa9f0f Implement basic api export of all active hosts
Done by zzz request. Export all seen hosts in json format { b32: last_seen }.
2013-10-09 15:43:38 +00:00

6 lines
106 B
Python

from django.conf.urls import *
urlpatterns = patterns('pyi2phosts.api.views',
url(r'^all/$', 'all'),
)