ez_docker/plugins/module_utils/service/redis.py
2024-12-11 18:42:59 +01:00

14 lines
283 B
Python

# Copyright: (c) 2024, Luca Bilke <luca@bil.ke>
# MIT License (see LICENSE)
from __future__ import annotations
from ansible_collections.snailed.ez_compose.plugins.module_utils.service import common as service
def main():
service.run()
if __name__ == "__main__":
main()