2
0
mirror of https://github.com/namecoin/ncdns synced 2024-11-11 19:10:43 +00:00
ncdns/tlshook/tlshook_notls.go

13 lines
202 B
Go
Raw Normal View History

//go:build no_namecoin_tls
2019-10-04 03:10:40 +00:00
// +build no_namecoin_tls
package tlshook
import (
"github.com/namecoin/ncdns/ncdomain"
)
func DomainValueHookTLS(qname string, ncv *ncdomain.Value) error {
return nil
}