From e52ae1e4a31a0a65f798c3e9b06e598833be5477 Mon Sep 17 00:00:00 2001 From: Matthieu Lalonde Date: Wed, 27 Jan 2021 19:38:24 +0000 Subject: [PATCH] Removed all TODO item comments, moved to tracker. --- cmd/altvrbot/main.go | 7 ------- pkg/altvr/altvr.go | 2 -- pkg/altvr/fetch.go | 2 -- pkg/bot/bot.go | 11 ----------- pkg/bot/handlers.go | 3 --- 5 files changed, 25 deletions(-) diff --git a/cmd/altvrbot/main.go b/cmd/altvrbot/main.go index fab0457..ff3e4be 100644 --- a/cmd/altvrbot/main.go +++ b/cmd/altvrbot/main.go @@ -1,12 +1,5 @@ package main -/* -TODO: Save cookie file? -TODO: https://github.com/spf13/viper -TODO: https://github.com/sirupsen/logrus / https://github.com/golang/glog -TODO: https://github.com/juju/errors -*/ - import ( "os" "os/signal" diff --git a/pkg/altvr/altvr.go b/pkg/altvr/altvr.go index 8130147..3b4d782 100644 --- a/pkg/altvr/altvr.go +++ b/pkg/altvr/altvr.go @@ -7,8 +7,6 @@ import ( "golang.org/x/net/publicsuffix" ) -// XXX: Hold a HTTP CONNECT / Keep-Alive so we show up as online - // AltVR Client Type type AltVR struct { jar *cookiejar.Jar diff --git a/pkg/altvr/fetch.go b/pkg/altvr/fetch.go index 5b209f0..382019c 100644 --- a/pkg/altvr/fetch.go +++ b/pkg/altvr/fetch.go @@ -1,7 +1,5 @@ package altvr -// TODO: Handle paginates - import ( "encoding/json" "errors" diff --git a/pkg/bot/bot.go b/pkg/bot/bot.go index ce43e15..43d99b2 100644 --- a/pkg/bot/bot.go +++ b/pkg/bot/bot.go @@ -1,16 +1,5 @@ package bot -// XXX: Ensure we don't join voice channels -// XXX: Fetch Altspace version and use latest -// XXX: Delay offline notifications to two checks -// XXX: Discord Intents -// XXX: Flirty mode -// XXX: Mlocks on pending requests -// XXX: Rate limits -// XXX: Fetch roles from Guild? -// XXX: Auto accept friendship mode -// XXX: Rude mode enabled only for certain users - import ( "bytes" "encoding/json" diff --git a/pkg/bot/handlers.go b/pkg/bot/handlers.go index f7295f6..4784103 100644 --- a/pkg/bot/handlers.go +++ b/pkg/bot/handlers.go @@ -1,8 +1,5 @@ package bot -// FIXME: aemoji does not update existing users -// XXX: Help should only show commands available to a user - import ( "fmt" "log"