6 lines
110 B
Python
6 lines
110 B
Python
from . import registry
|
|
from .yolo import detect
|
|
from .ocr import ocr
|
|
|
|
__all__ = ["registry", "detect", "ocr"]
|