code cleanup

Signed-off-by: guiyong.ou <guiyong.ou@daocloud.io>
This commit is contained in:
guiyong.ou
2022-07-19 22:46:32 +08:00
parent 11ded166c1
commit 628f6ac681
3 changed files with 5 additions and 5 deletions

View File

@@ -46,9 +46,9 @@ const (
// Stdin stream type.
Stdin StreamType = "stdin"
// Stdout stream type.
Stdout StreamType = StreamType(runtime.Stdout)
Stdout = StreamType(runtime.Stdout)
// Stderr stream type.
Stderr StreamType = StreamType(runtime.Stderr)
Stderr = StreamType(runtime.Stderr)
)
type wgCloser struct {