Other => Presence

This commit is contained in:
klemek
2021-01-11 16:35:33 +01:00
parent bfe279095d
commit ae9cc69ed2
6 changed files with 40 additions and 37 deletions
+5 -5
View File
@@ -7,7 +7,7 @@ from scanners import (
FullScanner,
FrequencyScanner,
CompositionScanner,
OtherScanner,
PresenceScanner,
)
logging.basicConfig(
@@ -26,10 +26,10 @@ bot.log_calls = True
bot.client.bot = bot # TODO place in miniscord
bot.register_command(
"other",
lambda *args: OtherScanner().compute(*args),
"other: other data analysis",
OtherScanner.help(),
"pres(ence)?",
lambda *args: PresenceScanner().compute(*args),
"pres: presence analysis",
PresenceScanner.help(),
)
bot.register_command(
"emotes",