mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-23 20:09:49 -08:00
12 lines
164 B
Go
12 lines
164 B
Go
//go:build windows
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func newSysLog(_ string) (io.WriteCloser, error) {
|
|
return nil, fmt.Errorf("unavailable on Windows")
|
|
}
|