urls.py 336 B

123456789
  1. from django.contrib import admin
  2. from django.urls import path
  3. from .views import get_screenshot, download_excel, run_script
  4. urlpatterns = [
  5. path('take-screenshot/', get_screenshot, name='take-screenshot'),
  6. path('download-excel/', download_excel, name='download-excel'),
  7. path('send-email/', run_script, name='send-email'),
  8. ]