GoLSh/types/shell.go
2025-06-27 10:55:53 -05:00

12 lines
125 B
Go

package types
type Shell struct {
Cd string
PyPaths []string
}
type CmdOutput struct {
Id int
Output string
}