generate_test_vars: move into clan_cli

Reduces overhead by not having to manage a separate package for this small tool
This commit is contained in:
DavHau
2025-09-16 15:01:12 +07:00
parent 1f3aa0075e
commit ea32fdbd93
12 changed files with 19 additions and 114 deletions

View File

@@ -0,0 +1,12 @@
#!/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()