mirror of
https://github.com/wavetermdev/waveterm
synced 2026-05-15 04:48:24 +00:00
20 lines
869 B
Go
20 lines
869 B
Go
// Copyright 2025, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package waveobj
|
|
|
|
type ObjRTInfo struct {
|
|
TsunamiTitle string `json:"tsunami:title,omitempty"`
|
|
TsunamiShortDesc string `json:"tsunami:shortdesc,omitempty"`
|
|
TsunamiSchemas any `json:"tsunami:schemas,omitempty"`
|
|
|
|
ShellHasCurCwd bool `json:"shell:hascurcwd,omitempty"`
|
|
ShellState string `json:"shell:state,omitempty"`
|
|
ShellType string `json:"shell:type,omitempty"`
|
|
ShellVersion string `json:"shell:version,omitempty"`
|
|
ShellUname string `json:"shell:uname,omitempty"`
|
|
ShellIntegration bool `json:"shell:integration,omitempty"`
|
|
ShellInputEmpty bool `json:"shell:inputempty,omitempty"`
|
|
ShellLastCmd string `json:"shell:lastcmd,omitempty"`
|
|
ShellLastCmdExitCode int `json:"shell:lastcmdexitcode,omitempty"`
|
|
}
|