More complex code since now we have to synchronize between threads, but a good way to teach myself more about goroutines.
8 lines
131 B
Go
8 lines
131 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package utils
|
|
|
|
const (
|
|
DEFAULT_IO_BUFFER_SIZE = 8192
|
|
)
|