1
0
mirror of https://github.com/containous/traefik.git synced 2025-01-07 17:17:53 +03:00
traefik/cluster/store.go

17 lines
347 B
Go
Raw Normal View History

package cluster
// Object is the struct to store
type Object interface{}
// Store is a generic interface to represents a storage
type Store interface {
Load() (Object, error)
Get() Object
Begin() (Transaction, Object, error)
}
// Transaction allows to set a struct in the KV store
type Transaction interface {
Commit(object Object) error
}