mirror of
https://github.com/status-im/sshfp-generator.git
synced 2025-03-03 21:50:36 +00:00
Fully working version. TODO: Few minor changes Signed-off-by: Artur Marud <artur@status.im>
15 lines
289 B
Go
15 lines
289 B
Go
package consul
|
|
|
|
type Repository interface {
|
|
GetData() error
|
|
ParseData() (hostsMap, error)
|
|
}
|
|
|
|
type Service interface {
|
|
LoadData() error
|
|
GetHostnames() []string
|
|
GetModifiedIndex(hostname string) int
|
|
GetCreateIndex(hostname string) int
|
|
GetMetaData(hostname string) map[string]string
|
|
}
|