28 lines
461 B
Python
28 lines
461 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: (c) 2024, Luca Bilke <luca@bil.ke>
|
|
# MIT License (see LICENSE)
|
|
|
|
# TODO: write ansible sections
|
|
|
|
DOCUMENTATION = r"""
|
|
"""
|
|
|
|
EXAMPLES = r"""
|
|
"""
|
|
|
|
RETURN = r"""
|
|
"""
|
|
|
|
from __future__ import annotations # pyright: ignore[reportGeneralTypeIssues]
|
|
|
|
from ansible_collections.snailed.ez_compose.plugins.module_utils.common import run_service
|
|
|
|
|
|
def main():
|
|
run_service()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|