mirror of https://github.com/curusarn/resh
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.
21 lines
379 B
21 lines
379 B
package msg
|
|
|
|
import "github.com/curusarn/resh/internal/recordint"
|
|
|
|
// CliMsg struct
|
|
type CliMsg struct {
|
|
SessionID string
|
|
PWD string
|
|
}
|
|
|
|
// CliResponse struct
|
|
type CliResponse struct {
|
|
Records []recordint.SearchApp
|
|
}
|
|
|
|
// StatusResponse struct
|
|
type StatusResponse struct {
|
|
Status bool `json:"status"`
|
|
Version string `json:"version"`
|
|
Commit string `json:"commit"`
|
|
}
|
|
|