mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-25 04:22:00 -08:00
13 lines
231 B
Go
13 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")
|
|
}
|