Implement a running count of the number of events per minute

This commit is contained in:
2019-07-28 15:07:46 +01:00
parent 38cabc0472
commit 4ce093bfbe
4 changed files with 16 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ from utils.loaders.command_loader import loadCommands
from core.helper import startBot
from core.server import Server, ServerFactory
from core.relay import Relay, RelayFactory
import modules.counters
loadCommands()
if __name__ == "__main__":
@@ -38,5 +38,5 @@ if __name__ == "__main__":
continue
if main.pool[i]["enabled"] == True:
startBot(i)
modules.counters.setupCounterLoop()
reactor.run()