Files
config-auditor-cli/config_auditor.py
7000pctAUTO efdc09af01
Some checks failed
CI / build (push) Has been cancelled
CI / test (push) Has been cancelled
fix: resolve CI linting failures by removing unused imports
2026-01-30 18:20:58 +00:00

12 lines
121 B
Python

import sys
from config_auditor.cli import cli
def main():
sys.exit(cli())
if __name__ == "__main__":
main()