th7/pcb/adapter.go

9 lines
116 B
Go

package pcb
import "th7/ports"
func NewAdapter(LED bool) (ports.PCBPort, error) {
return NewDummyAdapter(LED)
}