YREA-SLS/SLS_C/build_system/compilers/__init__.py

11 lines
154 B
Python

"""
Compiler implementations for different toolchains.
"""
from .base import Compiler, CompileResult
__all__ = [
"Compiler",
"CompileResult",
]