mod_config.py

Mon, 08 Dec 2014 16:12:51 -0500

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Mon, 08 Dec 2014 16:12:51 -0500
changeset 110
b2770c43b752
parent 73
d67cc4fbc3f1
child 124
7b2cd8b1ba86
permissions
-rw-r--r--

- now in color!

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