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