Setool: Setup
if == " main ": main()
# Add SETool to path setool_home = Path("{self.home_dir}") sys.path.insert(0, str(setool_home.parent)) setool setup
if __name__ == "__main__": main() # cli.py (main command-line interface) import click from rich.console import Console from rich.table import Table console = Console() if == " main ": main() # Add
@click.group() def main(): """SEtool - Security Enhancement Tool""" pass setool setup