From cfb3e8e37c4ded7d501173a28d97ecda3e004275 Mon Sep 17 00:00:00 2001 From: Jonathan Golder Date: Tue, 18 Sep 2018 11:37:03 +0200 Subject: [PATCH] bots: Add basic structure for MissingNoticeBot Issue #64 (https://git.golderweb.de/wiki/jogobot-red/issues/64) --- bots/missingnotice.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bots/missingnotice.py diff --git a/bots/missingnotice.py b/bots/missingnotice.py new file mode 100644 index 0000000..d5aa08f --- /dev/null +++ b/bots/missingnotice.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# missingnotice.py +# +# Copyright 2018 Jonathan Golder +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. +# +# + + +class MissingNoticeBot(): + """ + """ + + def __init__( self, genFactory, **kwargs ): + pass + + def run( self ): + pass