aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/apps/recommend/urls.py
blob: 09dfed4b938113bc727daa7822183b4e9ad6f059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-

"""
URL configuration for apps/recommend
"""

from django.conf.urls.defaults import *

from recommend import models as rm


urlpatterns = patterns('recommend.views',
    # app index
    url(r'^$',
        'recommend_index',
        name='recommend_index'),
)