mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-16 19:54:59 +00:00
22 lines
281 B
Go
22 lines
281 B
Go
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type logSyslog struct {
|
|
}
|
|
|
|
func newLogSyslog() (*logSyslog, error) {
|
|
return nil, fmt.Errorf("not implemented on windows")
|
|
}
|
|
|
|
func (ls *logSyslog) close() {
|
|
}
|
|
|
|
func (ls *logSyslog) write(p []byte) (int, error) {
|
|
return 0, nil
|
|
}
|