mirror of
https://github.com/Adembc/lazyssh.git
synced 2026-07-14 12:13:34 +02:00
15 lines
192 B
Go
15 lines
192 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Server struct {
|
|
Alias string
|
|
Host string
|
|
User string
|
|
Port int
|
|
Key string
|
|
Tags []string
|
|
Status string
|
|
LastSeen time.Time
|
|
}
|