Created
September 14, 2023 17:15
-
-
Save a-toms/d1b0a6b6be3044d07ba16b29072c9b6b to your computer and use it in GitHub Desktop.
python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sim/urls.py | |
from django.urls import path | |
from .views import dashboard, process_task, save_result, task_status | |
urlpatterns = [ | |
path('dashboard/', dashboard, name='dashboard'), | |
path('process-task/', process_task, name='process_task'), | |
path('save-result/', save_result, name='save_result'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment