mod_config.py

Sat, 11 Apr 2015 21:02:09 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sat, 11 Apr 2015 21:02:09 +0300
changeset 121
ac07779f788d
parent 73
d67cc4fbc3f1
child 124
7b2cd8b1ba86
permissions
-rw-r--r--

- reworked mercurial repository handling, removed hardcoded values

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