
from django.urls import path, include

from apps.newsletter import views

app_name = "newsletter"

urlpatterns = [
    # paths for the authentication
    path('subscribe', views.NewsLetterSubscriptionView.as_view(), name="subscribe"),
]

