1#!/usr/local/bin/python3.8
2# -*- coding: utf-8 -*-
3
4# Copyright (c) 2020 Ansible Project
5# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
6
7
8ANSIBLE_METADATA = {'metadata_version': '1.1',
9                    'status': ['stableinterface'],
10                    'supported_by': 'core'}
11
12DOCUMENTATION = r'''
13---
14module: win_util_args
15short_description: Short description
16description:
17- Some test description for the module
18options:
19  my_opt:
20    description:
21    - Test description
22    required: yes
23    type: str
24extends_documentation_fragment:
25- ns.col.ps_util
26
27author:
28- Ansible Test (@ansible)
29'''
30
31EXAMPLES = r'''
32- win_util_args:
33    option1: test
34    my_opt: test
35'''
36
37RETURN = r'''
38#
39'''
40