ez_docker/plugins/module_utils/service/redis.py
2025-01-11 21:22:54 +01:00

17 lines
342 B
Python

# Copyright: (c) 2024, Luca Bilke <luca@bil.ke>
# MIT License (see LICENSE)
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from ansible_collections.snailed.ez_compose.plugins.module_utils.common import (
State,
)
EXTRA_ARGS = {}
def helper(state: State) -> State:
return state