mirror of
https://github.com/status-im/sshfp-generator.git
synced 2025-01-18 16:41:15 +00:00
be748b44d6
Fully working version. TODO: Few minor changes Signed-off-by: Artur Marud <artur@status.im>
16 lines
210 B
Go
16 lines
210 B
Go
package consul
|
|
|
|
type host struct {
|
|
Node struct {
|
|
Node string
|
|
}
|
|
Service struct {
|
|
Meta map[string]string
|
|
CreateIndex int
|
|
ModifyIndex int
|
|
}
|
|
}
|
|
|
|
type rawHosts []host
|
|
type hostsMap map[string]host
|