9 lines
116 B
Go
9 lines
116 B
Go
|
package pcb
|
||
|
|
||
|
import "th7/ports"
|
||
|
|
||
|
func NewAdapter(LED bool) (ports.PCBPort, error) {
|
||
|
|
||
|
return NewDummyAdapter(LED)
|
||
|
}
|