summaryrefslogtreecommitdiff
blob: ff710c47197f33f22b79e87810f6d38957b5faa4 (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright 1998-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

from django.conf.urls import url
from . import views

urlpatterns = [
	url(r'^home/$', views.home),
	url(r'^packages/$', views.packages),
]