1 # SPDX-License-Identifier: GPL-2.0 2 3 import os 4 import importlib 5 6 _modules = {} 7 8 def 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)
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.