From 8a754e0858d922e955e71b253c139e071ecec432 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 18:04:21 +0200 Subject: Adding upstream version 2.14.3. Signed-off-by: Daniel Baumann --- .../ansible_test/_internal/provider/source/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/lib/ansible_test/_internal/provider/source/__init__.py (limited to 'test/lib/ansible_test/_internal/provider/source/__init__.py') diff --git a/test/lib/ansible_test/_internal/provider/source/__init__.py b/test/lib/ansible_test/_internal/provider/source/__init__.py new file mode 100644 index 0000000..aa8ca47 --- /dev/null +++ b/test/lib/ansible_test/_internal/provider/source/__init__.py @@ -0,0 +1,15 @@ +"""Common code for source providers.""" +from __future__ import annotations + +import abc + +from .. import ( + PathProvider, +) + + +class SourceProvider(PathProvider): + """Base class for source providers.""" + @abc.abstractmethod + def get_paths(self, path: str) -> list[str]: + """Return the list of available content paths under the given path.""" -- cgit v1.2.3