2019-12-02 12:37:59 +08:00

8 lines
109 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('', DetectionView.as_view()),
]