mod_config.py

Mon, 12 Jan 2015 10:55:45 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 12 Jan 2015 10:55:45 +0200
changeset 117
6c0609395889
parent 73
d67cc4fbc3f1
child 124
7b2cd8b1ba86
permissions
-rw-r--r--

- added a confirm system, probably useful in the future

from modulecore import command_error
from configfile import Config
import hgapi

ModuleData = {
	'commands':
	[
		{
			'name': 'addchan',
			'description': 'Adds a channel to config',
			'args': '<channel>',
			'level': 'admin',
		},

		{
			'name': 'delchan',
			'description': 'Deletes a channel from config',
			'args': '<channel>',
			'level': 'admin',
		},
	]
}

def cmd_addchan (bot, args, **rest):
	bot.add_irc_channel (args['channel'])

def cmd_delchan (bot, args, **rest):
	bot.remove_irc_channel (args['channel'])

mercurial