20 lines
412 B
Python
20 lines
412 B
Python
"""
|
|
Leak Technologies - img2pdf
|
|
---------------------------
|
|
Modular package initializer for img2pdf.
|
|
|
|
Provides a simple image-to-PDF conversion interface for importers and external use.
|
|
|
|
Example:
|
|
from src.converter import ImageToPDFConverter
|
|
"""
|
|
|
|
from .converter import ImageToPDFConverter
|
|
from .config import (
|
|
APP_NAME,
|
|
APP_VERSION,
|
|
APP_AUTHOR,
|
|
APP_DESCRIPTION,
|
|
SUPPORTED_EXTENSIONS,
|
|
)
|