Add basic API functions and working account.auth method

This commit is contained in:
2022-09-17 12:01:14 +03:00
parent 59ec0647dc
commit d51ffa0eb2
9 changed files with 262 additions and 9 deletions

View File

@@ -18,6 +18,7 @@ from django.urls import path
from . import views
urlpatterns = [
path('', views.view_methods, name='view_methods'),
path('<method_name>', views.call_method, name='call_method')
]