diff --git a/core/dbt/cli/__main__.py b/core/dbt/cli/__main__.py new file mode 100644 index 00000000000..4cdf410ca03 --- /dev/null +++ b/core/dbt/cli/__main__.py @@ -0,0 +1,8 @@ + +from __future__ import annotations + +from dbt.cli.main import cli + + +if __name__ == '__main__': + raise SystemExit(cli())