summaryrefslogtreecommitdiff
path: root/yoshi/__main__.py
blob: a94bac459327cd6608a6f7440917089d53ee9d2a (plain) (blame)
1
2
3
4
5
6
7
8
"""
Entry point for the yoshi cli app.
"""

if __name__ == "__main__":
    from yoshi.cli import yoshi

    yoshi()