7 lines
116 B
Python
7 lines
116 B
Python
"""Main entry point for the ingestion pipeline."""
|
|
|
|
from .cli.main import app
|
|
|
|
if __name__ == "__main__":
|
|
app()
|