mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 19:54:59 +00:00
13 lines
172 B
Go
13 lines
172 B
Go
// +build windows
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func newSyslog(prefix string) (io.WriteCloser, error) {
|
|
return nil, fmt.Errorf("not implemented on windows")
|
|
}
|