mod_config.py

Mon, 12 Jan 2015 02:44:25 -0500

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 12 Jan 2015 02:44:25 -0500
changeset 115
2bb5c4578ee1
parent 73
d67cc4fbc3f1
child 124
7b2cd8b1ba86
permissions
-rw-r--r--

- more fixes

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