This commit is contained in:
Cadey Ratio 2021-02-27 15:53:58 -05:00
parent 7f5e1e1d77
commit 094e23edf9
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@ import (
"bytes" "bytes"
"flag" "flag"
"fmt" "fmt"
"io/ioutil"
"log" "log"
"net/http" "net/http"
"os"
"time" "time"
"github.com/turnage/graw/reddit" "github.com/turnage/graw/reddit"
@ -30,7 +30,7 @@ func main() {
log.Fatal(err) log.Fatal(err)
} }
whSlc, err := os.ReadFile(*webhookFile) whSlc, err := ioutil.ReadFile(*webhookFile)
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }