summaryrefslogtreecommitdiffstats
path: root/pgcli/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgcli/__main__.py')
-rw-r--r--pgcli/__main__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pgcli/__main__.py b/pgcli/__main__.py
new file mode 100644
index 00000000..ddf1662d
--- /dev/null
+++ b/pgcli/__main__.py
@@ -0,0 +1,9 @@
+"""
+pgcli package main entry point
+"""
+
+from .main import cli
+
+
+if __name__ == "__main__":
+ cli()