pysheller/example/__init__.py

11 lines
232 B
Python
Raw Permalink Normal View History

2021-09-01 15:01:54 +02:00
from pysheller import PySheller
2021-09-01 21:52:15 +02:00
from os import path
2021-09-01 15:01:54 +02:00
2021-09-01 21:52:15 +02:00
cmd_dir_path = path.dirname(path.realpath(__file__))
PySheller(
name="test-app",
description="Very example app.",
commands_dir=path.join(cmd_dir_path, "commands"),
)