mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-23 23:42:59 +00:00
14 lines
231 B
Go
14 lines
231 B
Go
// +build windows
|
|
|
|
package syslog
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
// 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")
|
|
}
|