mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 20:00:43 -03:30
Co-authored-by: Wayne Witzel III <wayne@riotousliving.com> Co-authored-by: Christian Adams <rooftopcellist@gmail.com>
16 lines
232 B
Python
16 lines
232 B
Python
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.conf.urls import url
|
|
|
|
from awx.api.views import (
|
|
MetricsView
|
|
)
|
|
|
|
|
|
urls = [
|
|
url(r'^$', MetricsView.as_view(), name='metrics_view'),
|
|
]
|
|
|
|
__all__ = ['urls']
|