tendermint/cmd/barak/types/responses.go

27 lines
367 B
Go

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