mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
19 lines
272 B
Go
19 lines
272 B
Go
//go:build qf
|
|
|
|
package ctrld
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
type doqResolver struct {
|
|
uc *UpstreamConfig
|
|
}
|
|
|
|
func (r *doqResolver) Resolve(ctx context.Context, msg *dns.Msg) (*dns.Msg, error) {
|
|
return nil, errors.New("DoQ is not supported")
|
|
}
|