1
0
Fork 0
pgcli/pgcli/__main__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
101 B
Python
Raw Normal View History

"""
pgcli package main entry point
"""
from .main import cli
if __name__ == "__main__":
cli()