mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 14:36:00 -03:30
20 lines
309 B
Python
20 lines
309 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class Instance(base.Base):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.instance, Instance)
|
|
|
|
|
|
class Instances(page.PageList, Instance):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page([resources.instances, resources.related_instances], Instances)
|