Separate common and raw (#34563)

This commit is contained in:
Chris Houseknecht 2018-01-09 07:22:46 -05:00 committed by GitHub
commit 623ff39443
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 247 additions and 218 deletions

View file

@ -152,11 +152,11 @@ result:
type: list
'''
from ansible.module_utils.k8s.common import KubernetesAnsibleModule
from ansible.module_utils.k8s.raw import KubernetesRawModule
def main():
KubernetesAnsibleModule().execute_module()
KubernetesRawModule().execute_module()
if __name__ == '__main__':