mirror of
https://github.com/ansible/awx.git
synced 2026-01-29 15:24:42 -03:30
12 lines
220 B
Python
12 lines
220 B
Python
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
|
|
from django.urls import re_path
|
|
|
|
from awx.api.views import MetricsView
|
|
|
|
|
|
urls = [re_path(r'^$', MetricsView.as_view(), name='metrics_view')]
|
|
|
|
__all__ = ['urls']
|