Newer
Older
package southbound
import (
"code.fbi.h-da.de/danet/gosdn/controller/store"
)
// Store describes an interface for sbi store implementations.
type Store interface {
Add(SouthboundInterface) error
Delete(SouthboundInterface) error
Get(store.Query) (LoadedSbi, error)
GetAll() ([]LoadedSbi, error)