mirror of
https://github.com/maciej3031/comixify.git
synced 2026-03-11 08:54:35 +00:00
8 lines
229 B
Python
8 lines
229 B
Python
from django.urls import path
|
|
|
|
from .views import Comixify, ComixifyFromYoutube
|
|
|
|
urlpatterns = [
|
|
path(r'', Comixify.as_view(), name='comixify'),
|
|
path(r'from_yt/', ComixifyFromYoutube.as_view(), name='comixify_from_yt'),
|
|
]
|