Files
monkey/internal/object/state.go
Chuck Smith fb0cebaf56
Some checks failed
Build / build (push) Failing after 5m54s
Publish Image / publish (push) Failing after 35s
Test / build (push) Failing after 5m46s
bunch of changes
2024-03-28 17:19:23 -04:00

15 lines
260 B
Go

package object
import (
"io"
"os"
)
var (
Args []string = os.Args[1:] // Skip the monkey binary itself
Stdin io.Reader = os.Stdin
Stdout io.Writer = os.Stdout
Stderr io.Writer = os.Stderr
ExitFunction func(int) = os.Exit
)