Artur Marud be748b44d6
sshfp-generator: initial commit.
Fully working version.
TODO: Few minor changes

Signed-off-by: Artur Marud <artur@status.im>
2022-06-24 02:47:20 +02:00

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