remove needless code

This commit is contained in:
Martin Thielecke 2022-05-20 17:46:10 +02:00
parent 27016874c9
commit a416bab71f
Signed by: mthie
GPG Key ID: D1D25A85C8604DFB

View File

@ -82,19 +82,4 @@ func (f *TwitchFollowers) SaveFiles() {
saveContent("followers", "total", strconv.FormatInt(f.Total, 10))
saveContent("followers", "last_follower", f.Data[0].FromName)
saveJSON("followers", "complete_list", f)
/*
fs := []string{}
ids := []string{}
for _, follower := range f.Data {
name := strings.ToLower(follower.FromName)
id := follower.FromID
fs = append(fs, name)
ids = append(ids, id)
}
saveJSON("followers", "inactive", fs)
saveContent("followers", "inactive_ids", strings.Join(ids, "\n"))
*/
}