Documentation fix

This commit is contained in:
Einar Lanfranco
2022-11-18 18:05:44 -03:00
parent c6b4f0ef1e
commit 703b49c581
5 changed files with 23 additions and 15 deletions

17
example_bots/BOTS Normal file
View File

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

View File

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