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