Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
331B

  1. //go:build !gosrt
  2. package aoiprxkit
  3. import (
  4. "context"
  5. "fmt"
  6. "io"
  7. )
  8. func defaultSRTConnOpener(ctx context.Context, cfg SRTConfig) (io.ReadCloser, error) {
  9. _ = ctx
  10. _ = cfg
  11. return nil, fmt.Errorf("native SRT transport is not linked in this build: provide a custom opener or add a gosrt-backed opener in your target repo")
  12. }