12 lines
367 B
Python
12 lines
367 B
Python
"""Переносимые модули ProtoCAN и тонкая обёртка общего C99-ядра."""
|
|
|
|
from .native import (
|
|
NativeCore, NativeCoreUnavailable, NativeFrame, NativeGuiFrame,
|
|
NativeGuiParser, NativeParser,
|
|
)
|
|
|
|
__all__ = [
|
|
"NativeCore", "NativeCoreUnavailable", "NativeFrame", "NativeGuiFrame",
|
|
"NativeGuiParser", "NativeParser",
|
|
]
|