Skip to content

Commit

Permalink
add MachineServer interface - Simple RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
toransahu committed Mar 27, 2020
1 parent d2c800b commit 63604cf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions server/machine.go
@@ -0,0 +1,23 @@
//
// machine.go
// Copyright (C) 2020 Toran Sahu <toran.sahu@yahoo.com>
//
// Distributed under terms of the MIT license.
//

package server

import (
"context"

"github.com/toransahu/grpc-eg-go/machine"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)

type MachineServer struct{}

// Execute runs the set of instructions given.
func (s *MachineServer) Execute(ctx context.Context, instructions *machine.InstructionSet) (*machine.Result, error) {
return nil, status.Error(codes.Unimplemented, "Execute() not implemented yet")
}

0 comments on commit 63604cf

Please sign in to comment.