Skip to content

Commit 8e3f7eb

Browse files
authored
implement core logic (#3)
1 parent e922518 commit 8e3f7eb

27 files changed

+1665
-235
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ go.work.sum
3232
# .vscode/
3333
brainstorm
3434
.idea
35-
bin
35+
bin
36+
.DS_Store

.golangci.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ issues:
1515
- lll
1616

1717

18-
# exclude some linters for the test directory and test files
19-
- path: test/.*|.*_test\.go
20-
linters:
21-
- dupl
22-
- errcheck
23-
- goconst
24-
- gocyclo
25-
- gosec
2618

2719
linters:
2820
disable-all: true
@@ -76,8 +68,6 @@ linters-settings:
7668
- whyNoLint
7769
- hugeParam
7870

79-
goimports:
80-
local-prefixes: github.com/kubeflow/notebooks/workspaces/backend
8171

8272
goheader:
8373
template: |-

README.md

Lines changed: 80 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,105 @@
1-
# lazyssh
1+
<div align="center">
2+
<img src="./docs/logo.png" alt="lazyssh logo" width="600" height="600"/>
3+
</div>
24

3-
**lazyssh** is a terminal-based, interactive SSH manager inspired by tools like **lazydocker** and **k9s** — but built
4-
for managing your fleet of servers directly from your terminal.
5+
---
6+
7+
Lazyssh is a terminal-based, interactive SSH manager inspired by tools like lazydocker and k9s — but built for managing your fleet of servers directly from your terminal.
8+
<br/>
9+
With lazyssh, you can quickly navigate, connect, manage, and transfer files between your local machine and any server defined in your ~/.ssh/config. No more remembering IP addresses or running long scp commands — just a clean, keyboard-driven UI.
510

6-
With **lazyssh**, you can quickly **navigate**, **connect**, **manage**, and **transfer files** between your local
7-
machine and any server defined in your `~/.ssh/config`.
8-
No more remembering IP addresses or running long `scp` commands — just a clean, keyboard-driven UI.
11+
## ✨ Features
912

13+
### Server Management (current)
14+
- 📜 Read & display servers from your `~/.ssh/config` in a scrollable list.
15+
- ➕ Add a new server from the UI by specifying alias, host/IP, username, port, identity file.
16+
- ✏ Edit existing server entries directly from the UI.
17+
- 🗑 Delete server entries safely.
18+
- 📌 Pin / unpin servers to keep favorites at the top.
19+
- 🏓 Ping server to check status.
20+
21+
### Quick Server Navigation
22+
- 🔍 Fuzzy search by alias, IP, or tags.
23+
- 🖥 One‑keypress SSH into the selected server (Enter).
24+
- 🏷 Tag servers (e.g., prod, dev, test) for quick filtering.
25+
- ↕️ Sort by alias or last SSH (toggle + reverse).
26+
27+
28+
### Upcoming
29+
- 📁 Copy files between local and servers with an easy picker UI.
30+
- 📡 Port forwarding (local↔remote) from the UI.
31+
- 🔑 Enhanced Key Management:
32+
- Use default local public key (~/.ssh/id_ed25519.pub or ~/.ssh/id_rsa.pub)
33+
- Paste custom public keys manually
34+
- Generate new keypairs and deploy them
35+
- Automatically append keys to ~/.ssh/authorized_keys with correct permissions
1036
---
1137

12-
## ✨ Features
38+
## 🛠 Installation
1339

14-
### Server Management
40+
- From source (requires Go 1.22+):
41+
- git clone https://github.com/Adembc/lazyssh.git
42+
- cd lazyssh
43+
- go build -o lazyssh ./cmd
44+
- ./lazyssh --version
1545

16-
- 📜 **Read & display** servers from your `~/.ssh/config` in a scrollable list.
17-
-**Add** a new server entry from the UI by specifying:
18-
- Host alias
19-
- HostName / IP
20-
- Username
21-
- Port
22-
- Identity file
23-
-**Edit** existing server entries directly from the UI.
24-
- 🗑 **Delete** server entries safely.
46+
- Using make (if available):
47+
- make build
48+
- ./bin/lazyssh
2549

26-
### **Quick Server Navigation**
50+
Binary releases: if/when releases are published, download from the Releases page and place in your PATH.
2751

28-
- 🔍 **Fuzzy search** through servers by alias or IP.
29-
- ⏩ Instant SSH into selected server with a single keypress.
30-
- 🏷 Grouping/tagging of servers (e.g., `prod`, `dev`, `test`) for quick filtering.
52+
---
3153

32-
### **Remote Operations**
54+
## ⚙️ Configuration
3355

34-
- 🖥 **Open Terminal**: Start an SSH session instantly.
35-
- 📤 **Copy from server → local**: Select remote file/folder, choose local destination.
36-
- 📥 **Copy from local → server**: Select local file/folder, choose remote destination.
56+
lazyssh reads your SSH hosts from `~/.ssh/config`. Example entry:
3757

38-
### **Port Forwarding**
58+
```Host my-server
59+
HostName 203.0.113.10
60+
User ubuntu
61+
Port 22
62+
IdentityFile ~/.ssh/id_ed25519
63+
```
3964

40-
- 📡 Easily forward local ports to remote services (and vice versa) from the UI.
41-
- Save & reuse common port forwarding setups.
65+
You can add/edit/delete entries from within the UI as well; lazyssh will keep things consistent.
4266

43-
### **SSH Key Management**
67+
---
4468

45-
- 🔑 **Deploy public keys** to selected servers directly from the UI.
46-
- Choose one of three modes:
47-
- Use your default local public key (`~/.ssh/id_ed25519.pub` or `~/.ssh/id_rsa.pub`)
48-
- Paste a custom public key manually
49-
- Generate a new keypair and deploy it
50-
- Automatically append the key to `~/.ssh/authorized_keys` with correct permissions.
69+
## ⌨️ Key Bindings
70+
71+
| Key | Action |
72+
|---|---|
73+
| / | Toggle search bar |
74+
| ↑/↓ | Navigate servers |
75+
| Enter | SSH into selected server |
76+
| c | Copy SSH command to clipboard |
77+
| g | Ping selected server |
78+
| r | Refresh background data |
79+
| a | Add server |
80+
| e | Edit server |
81+
| t | Edit tags |
82+
| d | Delete server |
83+
| p | Pin/Unpin server |
84+
| s | Toggle sort field |
85+
| S | Reverse sort order |
86+
| q | Quit |
87+
88+
Tip: The hint bar at the top of the list shows the most useful shortcuts.
5189

5290
---
5391

54-
## 🎯 Use Cases
92+
## 🚀 Quickstart
5593

56-
- Developers switching between dozens of dev/test/staging/production VMs
57-
- Sysadmins managing multiple environments and needing quick access
58-
- Anyone who wants **fast, zero-hassle SSH management** without memorizing IPs
94+
- Ensure your `~/.ssh/config` contains at least one Host.
95+
- Run the app: `./lazyssh`
96+
- Use `/` to search, `Enter` to connect.
5997

6098
---
6199

62-
## 🚀 Usage
63100

64-
- Launch TUI (default):
65-
- ./lazyssh
66-
- Show version:
67-
- ./lazyssh -v
68-
- ./lazyssh --version
69-
- ./lazyssh version
70-
- List servers in terminal:
71-
- ./lazyssh list
101+
## 🙏 Acknowledgments
72102

73-
---
103+
- Built with [tview](https://github.com/rivo/tview) and [tcell](https://github.com/gdamore/tcell).
104+
- Inspired by [k9s](https://github.com/derailed/k9s) and [lazydocker](https://github.com/jesseduffield/lazydocker).
74105

cmd/main.go

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ package main
1717
import (
1818
"fmt"
1919
"os"
20+
"path/filepath"
2021
"time"
2122

22-
"github.com/Adembc/lazyssh/internal/adapters/data/memory"
23+
"github.com/Adembc/lazyssh/internal/adapters/data/file"
24+
"github.com/Adembc/lazyssh/internal/logger"
25+
2326
"github.com/Adembc/lazyssh/internal/adapters/ui"
2427
"github.com/Adembc/lazyssh/internal/core/services"
2528
"github.com/spf13/cobra"
@@ -32,9 +35,27 @@ var (
3235
)
3336

3437
func main() {
35-
serverInMemoryRepo := memory.NewServerRepository()
36-
serverService := services.NewServerService(serverInMemoryRepo)
37-
tui := ui.NewTUI(serverService, version, gitCommit, buildTime)
38+
log, err := logger.New("LAZYSSH")
39+
if err != nil {
40+
fmt.Println(err)
41+
os.Exit(1)
42+
}
43+
44+
//nolint:errcheck // log.Sync may return an error which is safe to ignore here
45+
defer log.Sync()
46+
47+
home, err := os.UserHomeDir()
48+
if err != nil {
49+
log.Errorw("failed to get user home directory", "error", err)
50+
//nolint:gocritic // exitAfterDefer: ensure immediate exit on unrecoverable error
51+
os.Exit(1)
52+
}
53+
sshConfigFile := filepath.Join(home, ".ssh", "config")
54+
metaDataFile := filepath.Join(home, ".lazyssh", "metadata.json")
55+
56+
serverRepo := file.NewServerRepo(log, sshConfigFile, metaDataFile)
57+
serverService := services.NewServerService(log, serverRepo)
58+
tui := ui.NewTUI(log, serverService, version, gitCommit, buildTime)
3859

3960
rootCmd := &cobra.Command{
4061
Use: ui.AppName,

docs/logo.png

1.15 MB
Loading

go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
module github.com/Adembc/lazyssh
22

3-
go 1.24.4
3+
go 1.24.6
44

55
require (
6-
github.com/gdamore/tcell/v2 v2.8.1
6+
github.com/atotto/clipboard v0.1.4
7+
github.com/gdamore/tcell/v2 v2.9.0
8+
github.com/mattn/go-runewidth v0.0.16
79
github.com/rivo/tview v0.0.0-20250625164341-a4a78f1e05cb
810
github.com/spf13/cobra v1.9.1
11+
go.uber.org/zap v1.27.0
912
)
1013

1114
require (
1215
github.com/gdamore/encoding v1.0.1 // indirect
1316
github.com/inconshreveable/mousetrap v1.1.0 // indirect
1417
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
15-
github.com/mattn/go-runewidth v0.0.16 // indirect
1618
github.com/rivo/uniseg v0.4.7 // indirect
1719
github.com/spf13/pflag v1.0.7 // indirect
20+
go.uber.org/multierr v1.11.0 // indirect
1821
golang.org/x/sys v0.35.0 // indirect
1922
golang.org/x/term v0.34.0 // indirect
2023
golang.org/x/text v0.28.0 // indirect

go.sum

Lines changed: 17 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1+
github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4=
2+
github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=
13
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
4+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
5+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
26
github.com/gdamore/encoding v1.0.1 h1:YzKZckdBL6jVt2Gc+5p82qhrGiqMdG/eNs6Wy0u3Uhw=
37
github.com/gdamore/encoding v1.0.1/go.mod h1:0Z0cMFinngz9kS1QfMjCP8TY7em3bZYeeklsSDPivEo=
4-
github.com/gdamore/tcell/v2 v2.8.1 h1:KPNxyqclpWpWQlPLx6Xui1pMk8S+7+R37h3g07997NU=
5-
github.com/gdamore/tcell/v2 v2.8.1/go.mod h1:bj8ori1BG3OYMjmb3IklZVWfZUJ1UBQt9JXrOCOhGWw=
6-
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
8+
github.com/gdamore/tcell/v2 v2.9.0 h1:N6t+eqK7/xwtRPwxzs1PXeRWnm0H9l02CrgJ7DLn1ys=
9+
github.com/gdamore/tcell/v2 v2.9.0/go.mod h1:8/ZoqM9rxzYphT9tH/9LnunhV9oPBqwS8WHGYm5nrmo=
710
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
811
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
912
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
1013
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
1114
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
1215
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
16+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
17+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1318
github.com/rivo/tview v0.0.0-20250625164341-a4a78f1e05cb h1:n7UJ8X9UnrTZBYXnd1kAIBc067SWyuPIrsocjketYW8=
1419
github.com/rivo/tview v0.0.0-20250625164341-a4a78f1e05cb/go.mod h1:cSfIYfhpSGCjp3r/ECJb+GKS7cGJnqV8vfjQPwoXyfY=
1520
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
16-
github.com/rivo/uniseg v0.4.3/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
1721
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
1822
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
1923
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
@@ -22,73 +26,51 @@ github.com/spf13/cobra v1.9.1/go.mod h1:nDyEzZ8ogv936Cinf6g1RU9MRY64Ir93oCnqb9wx
2226
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
2327
github.com/spf13/pflag v1.0.7 h1:vN6T9TfwStFPFM5XzjsvmzZkLuaLX+HS+0SeFLRgU6M=
2428
github.com/spf13/pflag v1.0.7/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
29+
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
30+
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
2531
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
32+
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
33+
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
34+
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
35+
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
36+
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
37+
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
2638
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
2739
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
28-
golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc=
29-
golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU=
30-
golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
3140
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
3241
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
33-
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
34-
golang.org/x/mod v0.15.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
35-
golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
3642
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
3743
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
3844
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
3945
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
40-
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
41-
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
42-
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
43-
golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
4446
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
4547
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
4648
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
47-
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
48-
golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
49-
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
50-
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
5149
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
5250
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
5351
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5452
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5553
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5654
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
57-
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
58-
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
59-
golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
60-
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
61-
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
6255
golang.org/x/sys v0.35.0 h1:vz1N37gP5bs89s7He8XuIYXpyY0+QlsKmzipCbUtyxI=
6356
golang.org/x/sys v0.35.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
64-
golang.org/x/telemetry v0.0.0-20240228155512-f48c80bd79b2/go.mod h1:TeRTkGYfJXctD9OcfyVLyj2J3IxLnKwHJR8f4D8a3YE=
6557
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
6658
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
6759
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
68-
golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
69-
golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU=
70-
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
71-
golang.org/x/term v0.20.0/go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY=
72-
golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
7360
golang.org/x/term v0.34.0 h1:O/2T7POpk0ZZ7MAzMeWFSg6S5IpWd/RXDlM9hgM3DR4=
7461
golang.org/x/term v0.34.0/go.mod h1:5jC53AEywhIVebHgPVeg0mj8OD3VO9OzclacVrqpaAw=
7562
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
7663
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
7764
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
7865
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
79-
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
80-
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
8166
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
82-
golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
83-
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
8467
golang.org/x/text v0.28.0 h1:rhazDwis8INMIwQ4tpjLDzUhx6RlXqZNPEM0huQojng=
8568
golang.org/x/text v0.28.0/go.mod h1:U8nCwOR8jO/marOQ0QbDiOngZVEBB7MAiitBuMjXiNU=
8669
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
8770
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
8871
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
8972
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
90-
golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=
91-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk=
9273
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
9374
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
75+
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
9476
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)