__main__.py 335 B

1234567891011121314151617
  1. #!/usr/bin/env python3
  2. """
  3. Main entry point for the Boilerplates CLI application.
  4. This file serves as the primary executable when running the CLI.
  5. """
  6. from cli.core.app import create_app
  7. def main() -> None:
  8. """Main entry point for the CLI application."""
  9. app = create_app()
  10. app()
  11. if __name__ == "__main__":
  12. main()