Core: Send Json over API

This commit is contained in:
Omma 2024-08-05 15:59:09 +03:30
parent a8adb825d5
commit 91f6fca9c8
14 changed files with 243 additions and 0 deletions

6
proxy/urls.py Normal file
View file

@ -0,0 +1,6 @@
from django.urls import path
from .views import *
urlpatterns = [
path('get/', send_wells, name='send_wells'),
]