clan-core/pkgs/clan-cli/bin/clan-config
DavHau 56c018d61c
All checks were successful
build / test (push) Successful in 10s
clan-config: add bin wrapper
2023-08-02 21:10:54 +02:00

13 lines
229 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 config # NOQA
if __name__ == "__main__":
config.main()