mediamtx/logsyslog_win.go

22 lines
281 B
Go
Raw Normal View History

2020-09-19 12:48:29 +00:00
// +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
}