Initial commit

This commit is contained in:
Keannu Christian Bernasol 2023-02-24 00:13:44 +08:00
commit 67bd8957d5
23 changed files with 849 additions and 0 deletions

0
project/api/__init__.py Normal file
View file

6
project/api/urls.py Normal file
View file

@ -0,0 +1,6 @@
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('api/v1/', include('notes.urls'))
]