mirror of
https://github.com/EchoVault/SugarDB.git
synced 2026-04-22 23:47:09 +08:00
c101b18969
In-Memory state between nodes is now synchronized.
11 lines
135 B
Go
11 lines
135 B
Go
package utils
|
|
|
|
type ApplyRequest struct {
|
|
CMD []string `json:"CMD"`
|
|
}
|
|
|
|
type ApplyResponse struct {
|
|
Error error
|
|
Response []byte
|
|
}
|