💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Gemigit › files › 7ee08ba268b0351f3f5bc5f222… captured on 2023-09-08 at 16:33:05. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-04-19)
-=-=-=-=-=-=-
0 // +build !go1.12,!go1.13,!go1.14,!go1.15
1
2 package util
3
4 import (
5 "io"
6 )
7
8 func ReadAll(r io.Reader) ([]byte, error) {
9 return io.ReadAll(r)
10 }
11