krz/yoshi-cli

A password manager for the command line.

clone: git clone https://gitbay.org/krz/yoshi-cli.git

v0.2.2: yoshi/__main__.py · raw

1"""
2Entry point for the yoshi cli app.
3"""
4
5if __name__ == "__main__":
6    from yoshi.cli import yoshi
7
8    yoshi()