feat: add python source loader

This commit is contained in:
lda
2026-06-11 18:46:14 +07:00 Verified
parent e1ac095df2
commit c114cde2da
5 changed files with 163 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
from __future__ import annotations
from .loader import PythonSourceConfigLike, load_python_source, python_capability_source
__all__ = [
"PythonSourceConfigLike",
"load_python_source",
"python_capability_source",
]