from __future__ import annotations from django.urls import path from . import views urlpatterns = [ path("projects//pricing/", views.pricing, name="hc-p-pricing"), path("pricing/", views.pricing, name="hc-pricing"), path("accounts/profile/billing/", views.billing, name="hc-billing"), ]