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