WellService/proxy/urls.py
2024-08-05 15:59:09 +03:30

6 lines
No EOL
117 B
Python

from django.urls import path
from .views import *
urlpatterns = [
path('get/', send_wells, name='send_wells'),
]