19 lines
544 B
Python
19 lines
544 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
|
|
class ModuleDocFragment(object):
|
|
# Standard files documentation fragment
|
|
DOCUMENTATION = r'''
|
|
options:
|
|
annotation:
|
|
description:
|
|
- User-defined string for annotating an object.
|
|
- If the value is not specified in the task, the value of environment variable C(ACI_ANNOTATION) will be used instead.
|
|
type: str
|
|
'''
|