From e5e1697402fac620d02d261d99fa0a3feeb39fc0 Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 2 Aug 2026 09:09:16 +0000 Subject: [PATCH] reorder: deploy, edit, status, remove, remote, dash, quit --- cmd/deploy/main.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/deploy/main.go b/cmd/deploy/main.go index f80ee40..e329f24 100644 --- a/cmd/deploy/main.go +++ b/cmd/deploy/main.go @@ -59,9 +59,9 @@ func showMenu() { fmt.Println() fmt.Println("─── Main Menu ───") fmt.Println(" [1] Deploy a node") - fmt.Println(" [2] Remove a node") - fmt.Println(" [3] Edit a node") - fmt.Println(" [4] Show status") + fmt.Println(" [2] Edit a node") + fmt.Println(" [3] Show status") + fmt.Println(" [4] Remove a node") fmt.Println(" [5] Remote tunnel") fmt.Println(" [6] Dashboard (TUI)") fmt.Println(" [q] Quit") @@ -71,11 +71,11 @@ func showMenu() { case "1": deployMenu() case "2": - removeMenu() - case "3": editMenu() - case "4": + case "3": showStatus() + case "4": + removeMenu() case "5": startTunnel() case "6":