ez_docker/plugins/module_utils/service/redis.py

15 lines
389 B
Python

# Copyright: (c) 2025, Luca Bilke <luca@bil.ke>
# MIT License (see LICENSE)
from __future__ import annotations
from typing import TYPE_CHECKING, Any
if TYPE_CHECKING:
from ansible_collections.snailed.ez_docker.plugins.module_utils.models import State
EXTRA_ARGS = {}
def helper(_state: State, _params: dict[str, Any]) -> dict[str, Any]:
return {"networks": {"internal": {}}}