11 lines
167 B
Python
11 lines
167 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import CreateUserView
|
||
|
|
||
|
|
||
|
app_name = "member"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('signup/', CreateUserView.as_view(), name="signup"),
|
||
|
]
|