from .views import UserProfileView, BillingAddressView
from django.urls import path
urlpatterns = [
path('profile/', UserProfileView.as_view(), name='profile'),
path('billing-address/', BillingAddressView.as_view(), name='billing-address'),
]