Update example

This commit is contained in:
samedamci 2021-09-01 21:52:15 +02:00
parent 538485de52
commit 77f0559869
No known key found for this signature in database
GPG Key ID: FCB4A9A20D00E894

View File

@ -1,3 +1,10 @@
from pysheller import PySheller from pysheller import PySheller
from os import path
PySheller(name="test-app", description="Very example app.", commands_dir="./commands") cmd_dir_path = path.dirname(path.realpath(__file__))
PySheller(
name="test-app",
description="Very example app.",
commands_dir=path.join(cmd_dir_path, "commands"),
)