Files
intelmq-docker/example_bots/bots/experts/example/expert.py
Einar Lanfranco 703b49c581 Documentation fix
2022-11-18 18:05:44 -03:00

15 lines
183 B
Python

# -*- coding: utf-8 -*-
from intelmq.lib.bot import Bot
class ExampleExpertBot(Bot):
def init(self):
pass
def process(self):
pass
BOT = ExampleExpertBot