forked from prehistoric-systems/comixify
8 lines
125 B
Python
8 lines
125 B
Python
from django.conf.urls import url
|
|
|
|
from .views import index
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', index, name='comixify_index'),
|
|
]
|