10c675d534
* add license header to modules * check license header at linting time
8 lines
280 B
Python
8 lines
280 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from .errors import DocumentStoreError, DuplicateDocumentError, MissingDocumentError
|
|
|
|
__all__ = ["DocumentStoreError", "DuplicateDocumentError", "MissingDocumentError"]
|