feat: Add basic API

This commit is contained in:
2024-10-03 08:45:42 +02:00
parent 73a6abef18
commit cc95a2832d
7 changed files with 70 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
from django.urls import path
from .views import (
AdoptionNoticeApiView
)
urlpatterns = [
path('adoption_notice', AdoptionNoticeApiView.as_view()),
]