mediamtx/internal/syslog/syslog_win.go

14 lines
231 B
Go
Raw Normal View History

// +build windows
package syslog
import (
"fmt"
2020-10-13 23:01:56 +00:00
"io"
)
2020-11-05 11:30:25 +00:00
// New allocates a io.WriteCloser that writes to the system log.
func New(prefix string) (io.WriteCloser, error) {
return nil, fmt.Errorf("not implemented on windows")
}