mirror of
https://github.com/YuuKi-OS/Yuu-Box.git
synced 2026-02-18 21:51:10 +00:00
16 lines
334 B
Python
16 lines
334 B
Python
"""YuuBox - Self-Healing Code Execution System"""
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
from yuubox.executor import YuuBox, ExecutionResult, ResourceLimits
|
|
from yuubox.exceptions import YuuBoxError, ExecutionError
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"YuuBox",
|
|
"ExecutionResult",
|
|
"ResourceLimits",
|
|
"YuuBoxError",
|
|
"ExecutionError",
|
|
]
|