8 lines
No EOL
172 B
Python
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'),
|
|
|
|
] |