backend router
This commit is contained in:
0
backend/api/auth/__init__.py
Normal file
0
backend/api/auth/__init__.py
Normal file
0
backend/api/auth/serializers.py
Normal file
0
backend/api/auth/serializers.py
Normal file
6
backend/api/auth/urls.py
Normal file
6
backend/api/auth/urls.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.urls import path
|
||||
# from . views import ()
|
||||
|
||||
urlpatterns = [
|
||||
|
||||
]
|
||||
0
backend/api/auth/views.py
Normal file
0
backend/api/auth/views.py
Normal file
5
backend/api/urls.py
Normal file
5
backend/api/urls.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.urls import path, include
|
||||
|
||||
urlpatterns = [
|
||||
path('v1/auth/', include('api.auth.urls'))
|
||||
]
|
||||
@@ -1,3 +0,0 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user