8 lines
123 B
Python
8 lines
123 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import *
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('environment/', EnvironmentView.as_view()),
|
||
|
]
|