Skip to content
Snippets Groups Projects
Service.go 330 B
Newer Older
  • Learn to ignore specific revisions
  • 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)
    }