tendermint/cmd/barak/types/responses.go

23 lines
317 B
Go
Raw Normal View History

2015-04-14 04:14:18 -07:00
package types
import (
pcm "github.com/tendermint/tendermint/process"
)
type ResponseStatus struct {
Pid int
Nonce uint64
Validators []Validator
}
2015-04-14 04:14:18 -07:00
type ResponseRunProcess struct {
2015-04-16 10:54:07 -07:00
Success bool
2015-04-14 04:14:18 -07:00
}
type ResponseStopProcess struct {
}
type ResponseListProcesses struct {
Processes []*pcm.Process
}