10 lines
137 B
Go
10 lines
137 B
Go
//go:build android
|
|
|
|
package main
|
|
|
|
import "github.com/albenik/go-serial/v2"
|
|
|
|
func cts(_ *serial.Port) (bool, error) {
|
|
return true, nil
|
|
}
|