NLProxy / nlproxy /service /__init__.py
Luiserb's picture
first commit
2129c29
Raw
History Blame Contribute Delete
305 Bytes
"""Service package for NLProxy.
This package exposes long-lived service abstractions such as compression
services that are used by the application and CLI workflows.
Author: IntelliDeep Labs Team
License: BSL 1.1
"""
from .compression import CompressionService
__all__ = [
"CompressionService"
]