Files
matitos_news/app_urls/api/urls.py
2025-03-12 17:56:40 +01:00

7 lines
133 B
Python

from django.urls import path
from .views import trigger_task
urlpatterns = [
path('fetch', trigger_task, name='trigger_task')
]