11 lines
258 B
Go
11 lines
258 B
Go
package tester
|
|
|
|
import (
|
|
testerv1 "git.sch9.ru/new_gate/ms-tester/pkg/go/gen/proto/tester/v1"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
type Handlers interface {
|
|
CreateSolution(*testerv1.CreateSolutionRequest, grpc.ServerStreamingServer[testerv1.TestingState]) error
|
|
}
|