💾 Archived View for gemini.rmf-dev.com › repo › Vaati › Gemigit › files › 207fe030acfc7c4a33058cb705… captured on 2023-09-08 at 16:33:01. 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/ioutil"
6 "io"
7 )
8
9 func ReadAll(r io.Reader) ([]byte, error) {
10 return ioutil.ReadAll(r)
11 }
12