initial commit

This commit is contained in:
Jakub Trllo 2019-04-16 14:17:50 +02:00
parent bb39f87f81
commit 67f314c276
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,8 @@
from .app import (
show,
cli
)
__all__ = [
"show",
"cli"
]

View file

@ -0,0 +1,5 @@
from . import cli
if __name__ == '__main__':
import sys
sys.exit(cli(sys.argv[1:]))