from django.urls import path

app_name = "users"  # Optional namespace for clarity

urlpatterns = [
    # No need to include "create/" if users are created via the admin panel
]
