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