urls.py 221 B

1234567891011
  1. from django.urls import path
  2. from .views import google_site_verification
  3. urlpatterns = [
  4. path(
  5. "google(<slug:token>\.html",
  6. google_site_verification,
  7. name="google-site-verification",
  8. )
  9. ]