8 lines
164 B
Go
8 lines
164 B
Go
package main
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
// pythonOut is a channel that will be written to by the python runtime via exec.Command
|
|
var pyReader, pyWriter = io.Pipe()
|