This commit is contained in:
2025-08-06 11:49:14 +03:00
commit b9be2179de
29 changed files with 1371 additions and 0 deletions

14
bot.py Normal file
View File

@@ -0,0 +1,14 @@
from FmdBot import FmdBot
from daemon.SimpleDaemon import Daemon
class FmdBotDaemon(Daemon):
def run(self):
fmd_bot = FmdBot()
fmd_bot.run()
if __name__ == '__main__':
# with FmdBotDaemon('/tmp/daemon-fmdbot.pid', error_log_file='errlog.txt') as daemon:
# daemon.process_command()
fmd_bot = FmdBot()
fmd_bot.run()