good morning!!!!

Skip to content
Snippets Groups Projects
Verified Commit d224c9fc authored by a's avatar a
Browse files

fix test

parent 9bdda64b
No related branches found
No related tags found
No related merge requests found
Pipeline #24823 passed
...@@ -2,8 +2,14 @@ package codec ...@@ -2,8 +2,14 @@ package codec
import "context" import "context"
var _ Conn = (*DummyClient)(nil)
type DummyClient struct{} type DummyClient struct{}
func (d *DummyClient) Closed() <-chan struct{} {
panic("not implemented") // TODO: Implement
}
func (d *DummyClient) Notify(ctx context.Context, method string, params any) error { func (d *DummyClient) Notify(ctx context.Context, method string, params any) error {
panic("not implemented") // TODO: Implement panic("not implemented") // TODO: Implement
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment