15 lines
222 B
Go
15 lines
222 B
Go
package ports
|
|
|
|
import (
|
|
"th7/data/core"
|
|
)
|
|
|
|
type CorePort interface {
|
|
GetChannel(int) (core.Channel, error)
|
|
GetChannels() []core.Channel
|
|
GetVref() float64
|
|
GetVadj() float64
|
|
GetPivdd() float64
|
|
GetRatio() core.Ratio
|
|
}
|