tendermint/cmd/barak/types/responses.go

23 lines
317 B
Go

package types
import (
pcm "github.com/tendermint/tendermint/process"
)
type ResponseStatus struct {
Pid int
Nonce uint64
Validators []Validator
}
type ResponseRunProcess struct {
Success bool
}
type ResponseStopProcess struct {
}
type ResponseListProcesses struct {
Processes []*pcm.Process
}