mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-21 16:23:36 -05:00
15 lines
352 B
Python
15 lines
352 B
Python
from django.conf.urls import url
|
|
|
|
from awx.api.views import (
|
|
ExecutionEnvironmentList,
|
|
ExecutionEnvironmentDetail,
|
|
)
|
|
|
|
|
|
urls = [
|
|
url(r'^$', ExecutionEnvironmentList.as_view(), name='execution_environment_list'),
|
|
url(r'^(?P<pk>[0-9]+)/$', ExecutionEnvironmentDetail.as_view(), name='execution_environment_detail'),
|
|
]
|
|
|
|
__all__ = ['urls']
|