mirror of
https://github.com/ansible/awx.git
synced 2026-01-22 23:18:03 -03:30
12 lines
248 B
Python
12 lines
248 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)
|