clan-core/pkgs/clan-cli/bin/clan
Jörg Thalheim d516b449e8
All checks were successful
build / test (push) Successful in 13s
clan-cli: add bin wrapper
2023-07-26 10:59:18 +02:00

13 lines
220 B
Python
Executable File

#!/usr/bin/env python3
import os
import sys
sys.path.insert(
0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
)
from clan_cli import main # NOQA
if __name__ == "__main__":
main()