11 lines
102 B
Go
11 lines
102 B
Go
package types
|
|
|
|
type Shell struct {
|
|
Cd string
|
|
}
|
|
|
|
type CmdOutput struct {
|
|
Id int
|
|
Output string
|
|
}
|