7 lines
103 B
Python
7 lines
103 B
Python
from django.urls import path
|
|
|
|
from .views import subscribe
|
|
|
|
urlpatterns = [
|
|
path('', subscribe),
|
|
]
|