Added sleep constant

This commit is contained in:
2016-03-25 02:10:36 +03:00
parent a707e8c6cc
commit 035d17e795

View File

@@ -34,7 +34,7 @@ func main() {
log.Fatal(err) log.Fatal(err)
} }
// processing buf here // processing buf here
fmt.Println(len(buf), n) fmt.Println(n)
time.Sleep(5 * time.Second) time.Sleep(SLEEP_TIME)
} }
} }