12 lines
184 B
Go
12 lines
184 B
Go
|
package ports
|
||
|
|
||
|
import "th7/data/core"
|
||
|
|
||
|
type CorePort interface {
|
||
|
GetChannel(int) (core.Channel, error)
|
||
|
GetAll() core.Data
|
||
|
GetVref() float64
|
||
|
GetVadj() float64
|
||
|
GetPivdd() float64
|
||
|
}
|