1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-09 14:28:03 +00:00
py-i2phosts/pyi2phosts/latest/urls.py
2011-02-17 17:29:52 +00:00

9 lines
236 B
Python

from django.conf.urls.defaults import *
from pyi2phosts.lib.rss import LatestHostsFeed
urlpatterns = patterns('pyi2phosts.latest.views',
url(r'^$', 'latest', name='latest'),
url(r'^rss/$', LatestHostsFeed(), name='latest-rss'),
)