func readBlocklist() error { blocklistfile, e := goappdata.CreatePath("diplomaenhancer") if e != nil { return e } blocklistfile += "/blocklist" f, e := os.Open(blocklistfile) if e != nil { return e } defer f.Close() dec := json.NewDecoder(f) e = dec.Decode(&blocklist) return e }
func saveBlocklist() error { blocklistfile, e := goappdata.CreatePath("diplomaenhancer") if e != nil { return e } blocklistfile += "/blocklist" f, e := os.Create(blocklistfile) if e != nil { return e } defer f.Close() enc := json.NewEncoder(f) e = enc.Encode(blocklist) return e }