dialer.go 468 Bytes
Newer Older
Marten Seemann's avatar
Marten Seemann committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package libp2pquic

import (
	"context"

	tpt "github.com/libp2p/go-libp2p-transport"
	ma "github.com/multiformats/go-multiaddr"
)

type dialer struct{}

func (d *dialer) Dial(raddr ma.Multiaddr) (tpt.Conn, error) {
	panic("not implemented")
}

func (d *dialer) DialContext(ctx context.Context, raddr ma.Multiaddr) (tpt.Conn, error) {
	panic("not implemented")
}

func (d *dialer) Matches(ma.Multiaddr) bool {
	panic("not implemented")
}

var _ tpt.Dialer = &dialer{}