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