dnscrypt-proxy/dnscrypt-proxy/systemd_android.go

10 lines
129 B
Go
Raw Normal View History

2019-10-20 14:57:28 +02:00
package main
import (
"io"
)
func (proxy *Proxy) SystemDListeners() (io.Closer, error) {
return ioutil.NopCloser(nil), nil
2019-10-20 14:57:28 +02:00
}