mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
More complex code since now we have to synchronize between threads, but a good way to teach myself more about goroutines.
7 lines
131 B
Go
7 lines
131 B
Go
// License: GPLv3 Copyright: 2022, Kovid Goyal, <kovid at kovidgoyal.net>
|
|
|
|
package utils
|
|
|
|
const (
|
|
DEFAULT_IO_BUFFER_SIZE = 8192
|
|
)
|