7 lines
141 B
Python
7 lines
141 B
Python
from django.urls import path
|
|
from .views import trigger_task
|
|
|
|
urlpatterns = [
|
|
path('trigger_task/', trigger_task, name='trigger_task')
|
|
]
|