mirror of
https://github.com/ansible/awx.git
synced 2026-06-22 07:07:47 -02:30
11 lines
158 B
Python
11 lines
158 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class Ping(base.Base):
|
|
pass
|
|
|
|
|
|
page.register_page(resources.ping, Ping)
|