mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
10 lines
122 B
Go
10 lines
122 B
Go
package main
|
|||
|
|||
import "os"
|
|||
|
|||
func leakyRead(path string) {
|
|||
f, _ := os.Open(path)
|
|||
buf := make([]byte, 1024)
|
|||
f.Read(buf)
|
|||
}
|