PowerEngine/modelRT/model/model_select.go

11 lines
167 B
Go

package model
import "modelRT/constant"
func SelectModelByType(modelType int) any {
if modelType == constant.BusbarType {
return BusbarSection{}
}
return nil
}