Files
clan-core/pkgs/clan-cli/bin/clan-generate-test-vars
DavHau ea32fdbd93 generate_test_vars: move into clan_cli
Reduces overhead by not having to manage a separate package for this small tool
2025-09-16 16:37:41 +07:00

13 lines
243 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.generate_test_vars.cli import main # NOQA
if __name__ == "__main__":
main()