Browse Source

Load missing library and correct variable name (#8)

Syohei YOSHIDA 9 năm trước cách đây
mục cha
commit
359db47a83
1 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 5 2
      log/white.go

+ 5 - 2
log/white.go

@@ -2,8 +2,11 @@
 
 package log
 
-import "io"
+import (
+	"io"
+	"os"
+)
 
 func output() io.Writer {
-	return os.stdout
+	return os.Stdout
 }