mirror of https://github.com/snachodog/mybuddy.git
11 lines
195 B
Python
11 lines
195 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.conf.urls import url
|
||
|
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^$', views.IndexView.as_view(), name='index'),
|
||
|
]
|