8 lines
168 B
Go
8 lines
168 B
Go
|
package tmux
|
||
|
|
||
|
type Pane struct {
|
||
|
Root string `yaml:"root,omitempty"`
|
||
|
Type string `yaml:"type,omitempty"`
|
||
|
Commands []string `yaml:"commands,omitempty"`
|
||
|
}
|