[ADD] HORILLA API: Add Horilla API into master code base

This commit is contained in:
Horilla
2024-10-10 15:41:46 +05:30
parent f42ac1a391
commit 053964edd9
42 changed files with 7330 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from django.urls import path
from ...api_views.auth.views import LoginAPIView
urlpatterns = [
path('login/', LoginAPIView.as_view())
]