mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-01 21:51:48 -05:00
11 lines
247 B
Python
11 lines
247 B
Python
from awxkit.api.resources import resources
|
|
from . import page
|
|
|
|
|
|
class Subscriptions(page.Page):
|
|
def get_possible_licenses(self, **kwargs):
|
|
return self.post(json=kwargs).json
|
|
|
|
|
|
page.register_page(resources.subscriptions, Subscriptions)
|