Config outline

This commit is contained in:
Piotr Dec 2025-10-06 23:45:30 +02:00
parent 60c4aeb4e3
commit 2cde0de07a
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
4 changed files with 36 additions and 2 deletions

View file

@ -1,4 +1,7 @@
if __name__ == '__main__':
from main import run
try:
from main import run
except ImportError:
from .main import run
run()