| 12345678910 |
- // +build windows
- package statsd
- import "fmt"
- // newUDSWriter is disable on windows as unix sockets are not available
- func newUDSWriter(addr string) (statsdWriter, error) {
- return nil, fmt.Errorf("unix socket is not available on windows")
- }
|