good morning!!!!

Skip to content
Snippets Groups Projects
conn_dummy.go 644 B
Newer Older
a's avatar
a committed
package jsonrpc
a's avatar
a committed

import "context"

a's avatar
a committed
var _ Conn = (*DummyClient)(nil)

a's avatar
a committed
type DummyClient struct{}

a's avatar
a committed
func (d *DummyClient) Closed() <-chan struct{} {
	panic("not implemented") // TODO: Implement
}

a's avatar
a committed
func (d *DummyClient) Notify(ctx context.Context, method string, params any) error {
	panic("not implemented") // TODO: Implement
}

func (d *DummyClient) Do(ctx context.Context, result any, method string, params any) error {
	panic("not implemented") // TODO: Implement
}

func (d *DummyClient) Close() error {
	panic("not implemented") // TODO: Implement
}

func (d *DummyClient) Mount(_ Middleware) {
	panic("not implemented") // TODO: Implement
}