//go:build windows // +build windows package main func StartCan(canbus string) (<-chan *CanFrame, error) { return nil, &NotImplError{} } type NotImplError struct { } func (e *NotImplError) Error() string { return "Not implemented for windows platform" }