mirror of
https://github.com/MengMengCode/VoCat.git
synced 2026-08-13 03:13:43 +08:00
14 lines
218 B
Go
14 lines
218 B
Go
//go:build !linux
|
|
|
|
package device
|
|
|
|
import (
|
|
"context"
|
|
|
|
"vocat/internal/modem"
|
|
)
|
|
|
|
func readPlatformRegistration(context.Context, modem.Candidate) (platformRegistration, bool) {
|
|
return platformRegistration{}, false
|
|
}
|