15 lines
357 B
Python
15 lines
357 B
Python
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()
|