mirror of
https://github.com/kemko/xc.git
synced 2026-01-01 15:55:43 +03:00
13 lines
213 B
Go
13 lines
213 B
Go
package store
|
|
|
|
// Backend represents a store backend interface
|
|
type Backend interface {
|
|
Load() error
|
|
Reload() error
|
|
|
|
Datacenters() []*Datacenter
|
|
Groups() []*Group
|
|
WorkGroups() []*WorkGroup
|
|
Hosts() []*Host
|
|
}
|