urls.py 88 B

123456
  1. from django.urls import path
  2. from .views import reg
  3. urlpatterns = [
  4. path('', reg)
  5. ]