Some modifications made to developer guide and a new noop collector bot example added

This commit is contained in:
Einar Lanfranco
2022-11-26 14:00:12 -03:00
parent c4a77efb42
commit 6947ae3cad
5 changed files with 4 additions and 34 deletions

View File

@@ -1,17 +0,0 @@
{
"Collector": {
},
"Parser": {
},
"Expert": {
"Example": {
"description": "Example own bot.",
"module": "intelmq.bots.experts.example.expert",
"parameters": {
}
}
},
"Output": {
}
}

View File

@@ -30,4 +30,4 @@ class NoOpCollectorBot(CollectorBot):
self.send_message(report)
BOT = NoOpCollectorBot
BOT = NoOpCollectorBot

View File

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