summaryrefslogtreecommitdiff
path: root/saleor/core/urls.py
blob: 16cbf75b6d74c814a71ab4d8d20b47f2f4f6d12a (plain)
1
2
3
4
5
6
7
8
9
from django.conf.urls import url

from . import views


urlpatterns = [
    url(r'^$', views.home, name='home'),
    url(r'^style-guide/', views.styleguide, name='styleguide'),
]