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