mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
12 lines
161 B
Go
12 lines
161 B
Go
// +build android
|
|
|
|
package main
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
)
|
|
|
|
func (proxy *Proxy) SystemDListeners() (io.Closer, error) {
|
|
return ioutil.NopCloser(nil), nil
|
|
}
|