(distro *wsl.Distro)
| 19 | } |
| 20 | |
| 21 | func MakeWSLShellClient(distro *wsl.Distro) *WSLShellClient { |
| 22 | return &WSLShellClient{distro: distro} |
| 23 | } |
| 24 | |
| 25 | func (c *WSLShellClient) MakeProcessController(cmdSpec CommandSpec) (ShellProcessController, error) { |
| 26 | return MakeWSLProcessController(c.distro, cmdSpec) |