1# SPDX-License-Identifier: GPL-2.0
2
3import os
4import importlib
5
6_modules = {}
7
8def Remote(kind, args, src_path):
9    global _modules
10
11    if kind not in _modules:
12        _modules[kind] = importlib.import_module("..remote_" + kind, __name__)
13
14    dir_path = os.path.abspath(src_path + "/../")
15    return getattr(_modules[kind], "Remote")(args, dir_path)
16