mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-10 13:10:33 +08:00
12 lines
109 B
Go
12 lines
109 B
Go
// +build go1.5
|
|
|
|
package packed
|
|
|
|
import (
|
|
"bufio"
|
|
)
|
|
|
|
func discard(r *bufio.Reader, n int) {
|
|
r.Discard(n)
|
|
}
|