rename ui to clan-app and move clan-app one layer up

This commit is contained in:
Jörg Thalheim
2025-05-15 13:19:20 +02:00
parent 180e84d9e9
commit 2561e3e4d1
190 changed files with 128 additions and 192 deletions

14
pkgs/clan-app/bin/clan-app Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
import sys
from pathlib import Path
module_path = Path(__file__).parent.parent.absolute()
sys.path.insert(0, str(module_path))
sys.path.insert(0, str(module_path.parent / "clan_cli"))
from clan_app import main # NOQA
if __name__ == "__main__":
main()