mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
12 lines
173 B
Go
12 lines
173 B
Go
//go:build windows
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func newSysLog(prefix string) (io.WriteCloser, error) {
|
|
return nil, fmt.Errorf("not implemented on windows")
|
|
}
|