Files
config-auditor-cli/config_auditor.py
7000pctAUTO afc4768433
Some checks failed
CI / test (push) Failing after 17s
CI / build (push) Has been skipped
Add core files: README, LICENSE, requirements, setup, config
2026-01-30 18:01:25 +00:00

14 lines
159 B
Python

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