mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
13 lines
192 B
Go
13 lines
192 B
Go
// +build !linux,!darwin
|
|
|
|
package common
|
|
|
|
import (
|
|
"errors"
|
|
"net/url"
|
|
)
|
|
|
|
func NewSyslogHook(url *url.URL, prefix string) error {
|
|
return errors.New("Syslog not supported on this system.")
|
|
}
|