mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-25 21:09:15 -08:00
12 lines
161 B
Go
12 lines
161 B
Go
//go:build darwin
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func newSysLog(_ string) (io.WriteCloser, error) {
|
|
return nil, fmt.Errorf("unavailable on macOS")
|
|
}
|