24 lines
404 B
Python
24 lines
404 B
Python
"""
|
|
Core package for CBCFacil
|
|
"""
|
|
|
|
from .exceptions import (
|
|
ProcessingError,
|
|
WebDAVError,
|
|
AIProcessingError,
|
|
ConfigurationError,
|
|
FileProcessingError
|
|
)
|
|
from .result import Result
|
|
from .base_service import BaseService
|
|
|
|
__all__ = [
|
|
'ProcessingError',
|
|
'WebDAVError',
|
|
'AIProcessingError',
|
|
'ConfigurationError',
|
|
'FileProcessingError',
|
|
'Result',
|
|
'BaseService'
|
|
]
|