WellService/proxy/urls.py
2024-08-06 13:57:41 +03:30

8 lines
No EOL
172 B
Python

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