"""Main entry point for the swarm benchmark CLI."""

import sys
from .cli.main import main

if __name__ == "__main__":
    sys.exit(main())