mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 20:20:06 -03:30
11 lines
173 B
Python
11 lines
173 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class Dashboard(base.Base):
|
|
pass
|
|
|
|
|
|
page.register_page(resources.dashboard, Dashboard)
|