Rich Enhanced Shell History - Contextual shell history for zsh and bash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package msg
|
|
|
|
// InspectMsg struct
|
|
type InspectMsg struct {
|
|
SessionID string `json:"sessionId"`
|
|
Count uint `json:"count"`
|
|
}
|
|
|
|
// MultiResponse struct
|
|
type MultiResponse struct {
|
|
CmdLines []string `json:"cmdlines"`
|
|
}
|
|
|