correct parse the identyfile and allow remove tags

This commit is contained in:
Adem Baccara
2025-09-10 21:59:46 +01:00
parent b71ef74aaa
commit bb5b7554e6
8 changed files with 69 additions and 177 deletions
+10 -10
View File
@@ -17,14 +17,14 @@ package domain
import "time"
type Server struct {
Alias string
Aliases []string
Host string
User string
Port int
Key string
Tags []string
LastSeen time.Time
PinnedAt time.Time
SSHCount int
Alias string
Aliases []string
Host string
User string
Port int
IdentityFiles []string
Tags []string
LastSeen time.Time
PinnedAt time.Time
SSHCount int
}