mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-07-09 17:08:29 +00:00
Rename the Remote Link UI and user-facing messages to Remote Control. Refactor tunnel startup into provider helpers, remove ngrok support, and keep Cloudflare Tunnel, Microsoft Dev Tunnels, Serveo, and Tailscale wired through the Remote Control selector. Add provider-time binary preparation, Tailscale userspace tailscaled startup, Tailscale login URL display, Microsoft Dev Tunnel progress feedback, and focused regression coverage for the Remote Control provider flows.
11 lines
295 B
Python
11 lines
295 B
Python
from flaredantic import ServeoConfig, ServeoTunnel
|
|
|
|
from helpers.tunnel_common import FlaredanticTunnelHelper
|
|
|
|
|
|
class ServeoTunnelHelper(FlaredanticTunnelHelper):
|
|
label = "Serveo"
|
|
|
|
def build_tunnel(self):
|
|
config = ServeoConfig(port=self.port)
|
|
return ServeoTunnel(config)
|