Sfoglia il codice sorgente

Load missing library and correct variable name (#8)

Syohei YOSHIDA 9 anni fa
parent
commit
359db47a83
1 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  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
 }