// Code generated by falafel 0.9.1. DO NOT EDIT. // source: autopilot.proto // +build js package autopilotrpc import ( "context" gateway "github.com/grpc-ecosystem/grpc-gateway/v2/runtime" "google.golang.org/grpc" "google.golang.org/protobuf/encoding/protojson" ) func RegisterAutopilotJSONCallbacks(registry map[string]func(ctx context.Context, conn *grpc.ClientConn, reqJSON string, callback func(string, error))) { marshaler := &gateway.JSONPb{ MarshalOptions: protojson.MarshalOptions{ UseProtoNames: true, EmitUnpopulated: true, }, } registry["autopilotrpc.Autopilot.Status"] = func(ctx context.Context, conn *grpc.ClientConn, reqJSON string, callback func(string, error)) { req := &StatusRequest{} err := marshaler.Unmarshal([]byte(reqJSON), req) if err != nil { callback("", err) return } client := NewAutopilotClient(conn) resp, err := client.Status(ctx, req) if err != nil { callback("", err) return } respBytes, err := marshaler.Marshal(resp) if err != nil { callback("", err) return } callback(string(respBytes), nil) } registry["autopilotrpc.Autopilot.ModifyStatus"] = func(ctx context.Context, conn *grpc.ClientConn, reqJSON string, callback func(string, error)) { req := &ModifyStatusRequest{} err := marshaler.Unmarshal([]byte(reqJSON), req) if err != nil { callback("", err) return } client := NewAutopilotClient(conn) resp, err := client.ModifyStatus(ctx, req) if err != nil { callback("", err) return } respBytes, err := marshaler.Marshal(resp) if err != nil { callback("", err) return } callback(string(respBytes), nil) } registry["autopilotrpc.Autopilot.QueryScores"] = func(ctx context.Context, conn *grpc.ClientConn, reqJSON string, callback func(string, error)) { req := &QueryScoresRequest{} err := marshaler.Unmarshal([]byte(reqJSON), req) if err != nil { callback("", err) return } client := NewAutopilotClient(conn) resp, err := client.QueryScores(ctx, req) if err != nil { callback("", err) return } respBytes, err := marshaler.Marshal(resp) if err != nil { callback("", err) return } callback(string(respBytes), nil) } registry["autopilotrpc.Autopilot.SetScores"] = func(ctx context.Context, conn *grpc.ClientConn, reqJSON string, callback func(string, error)) { req := &SetScoresRequest{} err := marshaler.Unmarshal([]byte(reqJSON), req) if err != nil { callback("", err) return } client := NewAutopilotClient(conn) resp, err := client.SetScores(ctx, req) if err != nil { callback("", err) return } respBytes, err := marshaler.Marshal(resp) if err != nil { callback("", err) return } callback(string(respBytes), nil) } }