#!/usr/bin/env python3
"""Entry point for tailnet-admin-cli."""

from tailnet_admin.cli import app

if __name__ == "__main__":
    app()