Remove commented code for debugging
This commit is contained in:
parent
cf4aa45663
commit
d6d19625f3
12
monolith.py
12
monolith.py
|
@ -16,13 +16,13 @@ if not token:
|
|||
|
||||
|
||||
async def main(loop):
|
||||
# log.info("Starting Discord handler.")
|
||||
# client = DiscordClient()
|
||||
# loop.create_task(client.start(token))
|
||||
log.info("Starting Discord handler.")
|
||||
client = DiscordClient()
|
||||
loop.create_task(client.start(token))
|
||||
|
||||
# log.info("Starting 4chan handler.")
|
||||
# chan = Chan4()
|
||||
# loop.create_task(chan.run())
|
||||
log.info("Starting 4chan handler.")
|
||||
chan = Chan4()
|
||||
loop.create_task(chan.run())
|
||||
|
||||
log.info("Starting ingest handler.")
|
||||
ingest = Ingest()
|
||||
|
|
|
@ -9,8 +9,8 @@ from processing import process
|
|||
|
||||
SOURCES = ["4ch", "irc", "dis"]
|
||||
# DEBUG CODE REMOVE ME
|
||||
SOURCES.remove("4ch")
|
||||
SOURCES.remove("dis")
|
||||
# SOURCES.remove("4ch")
|
||||
# SOURCES.remove("dis")
|
||||
# DEBUG CODE REMOVE ME
|
||||
KEYPREFIX = "queue."
|
||||
|
||||
|
|
Loading…
Reference in New Issue