X-Git-Url: https://jfr.im/git/erebus.git/blobdiff_plain/5f03d045cd465491760668b3e34453ae6a50034b..c3ff1486929923f394c219e6999df301a5a5bf04:/modules/sms.py diff --git a/modules/sms.py b/modules/sms.py index 80f5fb9..49bdaa2 100644 --- a/modules/sms.py +++ b/modules/sms.py @@ -1,13 +1,15 @@ # Erebus IRC bot - Author: Erebus Team -# simple module example +# vim: fileencoding=utf-8 +# twilio sms module # This file is released into the public domain; see http://unlicense.org/ # module info modinfo = { 'author': 'Erebus Team', 'license': 'public domain', - 'compatible': [1], # compatible module API versions - 'depends': [], # other modules required to work properly? + 'compatible': [0], + 'depends': [], + 'softdeps': ['help'], } # preamble @@ -26,10 +28,6 @@ def client(bot): ) -#@lib.hook(needchan=False, glevel=lib.MANAGER) -def reply(bot, user, chan, realtarget, *args): - return NotImplemented - @lib.hook(('sms','w'), needchan=False, glevel=lib.OWNER) @lib.help(" ", "send an SMS") def sms(bot, user, chan, realtarget, *args):