13 lines
291 B
Go
13 lines
291 B
Go
package registry
|
|
|
|
import "git.wzray.com/homelab/mastermind/internal/types"
|
|
|
|
type Storage interface {
|
|
Save(*storedConfig) error
|
|
Load(*storedConfig) error
|
|
}
|
|
|
|
type storedConfig struct {
|
|
LastUpdate int64 `json:"last_update"`
|
|
Nodes map[string]types.Node `json:"nodes"`
|
|
}
|