mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-11 02:21:48 -05:00
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)
|