Initial commit

This commit is contained in:
Keannu Christian Bernasol 2024-01-06 12:13:39 +08:00
commit 0ad426398a
25 changed files with 2648 additions and 0 deletions

7
backend/accounts/urls.py Normal file
View file

@ -0,0 +1,7 @@
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('', include('djoser.urls')),
path('', include('djoser.urls.jwt')),
]