Th3BossC's picture
stuff
a891fbc
raw
history blame contribute delete
154 Bytes
from django.urls import path
from .views import ImageModelView
app_name='imageModel'
urlpatterns = [
path('colourize/', ImageModelView.as_view()),
]