e11sync

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

urls.py (110B) - Raw


      1 from django.urls import path
      2 
      3 from . import views
      4 
      5 urlpatterns = [
      6     path("", views.index, name="index"),
      7 ]