10 lines
135 B
Go
10 lines
135 B
Go
package cmd
|
|
|
|
import (
|
|
"gosh/types"
|
|
)
|
|
|
|
func GoshPwd(sh *types.Shell) types.CmdOutput {
|
|
return types.CmdOutput{Id: 0, Output: sh.Cd}
|
|
}
|