add dependencies

This commit is contained in:
2018-04-10 20:53:13 +08:00
parent 25fd77a63b
commit 33e72857bf
89 changed files with 438014 additions and 0 deletions

36
src/pbservice/common.go Normal file
View File

@@ -0,0 +1,36 @@
package pbservice
const (
OK = "OK"
ErrNoKey = "ErrNoKey"
ErrWrongServer = "ErrWrongServer"
)
type Err string
// Put or Append
type PutAppendArgs struct {
Key string
Value string
// You'll have to add definitions here.
// Field names must start with capital letters,
// otherwise RPC will break.
}
type PutAppendReply struct {
Err Err
}
type GetArgs struct {
Key string
// You'll have to add definitions here.
}
type GetReply struct {
Err Err
Value string
}
// Your RPC definitions here.