mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-10-27 09:40:27 +08:00
13 lines
173 B
Go
13 lines
173 B
Go
//go:build windows
|
|
|
|
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func newSyslog(prefix string) (io.WriteCloser, error) {
|
|
return nil, fmt.Errorf("not implemented on windows")
|
|
}
|