* change domain to namespace * lower go.mod deps Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
16 lines
230 B
Go
16 lines
230 B
Go
package register
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type TestHandler struct{}
|
|
|
|
type TestRequest struct{}
|
|
|
|
type TestResponse struct{}
|
|
|
|
func (t *TestHandler) Test(ctx context.Context, req *TestRequest, rsp *TestResponse) error {
|
|
return nil
|
|
}
|