Skip to content

Commit 2e2b311

Browse files
committed
Add ingest command
1 parent 2963f2c commit 2e2b311

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/datapilot/cli/main.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ def datapilot():
99

1010

1111
datapilot.add_command(dbt)
12+
13+
try:
14+
from datapilot.ingestion.cli import ingest
15+
16+
datapilot.add_command(ingest)
17+
except ImportError:
18+
pass

0 commit comments

Comments
 (0)