1# Copyright 2022 vkit-x Administrator. All Rights Reserved.
2#
3# This project (vkit-x/vkit) is dual-licensed under commercial and SSPL licenses.
4#
5# The commercial license gives you the full rights to create and distribute software
6# on your own terms without any SSPL license obligations. For more information,
7# please see the "LICENSE_COMMERCIAL.txt" file.
8#
9# This project is also available under Server Side Public License (SSPL).
10# The SSPL licensing is ideal for use cases such as open source projects with
11# SSPL distribution, student/academic purposes, hobby projects, internal research
12# projects without external distribution, or other projects where all SSPL
13# obligations can be met. For more information, please see the "LICENSE_SSPL.txt" file.
14from ..interface import EngineExecutorAggregatorFactory
15from .type import BarcodeEngineRunConfig
16
17from .code39 import (
18 barcode_code39_engine_executor_factory,
19 BarcodeCode39EngineInitConfig,
20 BarcodeCode39Engine,
21)
22from .qr import (
23 barcode_qr_engine_executor_factory,
24 BarcodeQrEngineInitConfig,
25 BarcodeQrEngine,
26)
27
28barcode_engine_executor_aggregator_factory = EngineExecutorAggregatorFactory([
29 barcode_code39_engine_executor_factory,
30 barcode_qr_engine_executor_factory,
31])