add authentication

This commit is contained in:
2024-05-17 16:14:02 +02:00
parent cb6ae7c06d
commit 4c39fed29b
12 changed files with 111 additions and 4 deletions

9
authentication/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from . import views
from django.urls import include, path
from rest_framework import routers
router = routers.DefaultRouter()
urlpatterns = [
path('', include(router.urls)),
]