3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-25 12:12:53 +01:00

Remove plugins/hello.py

This was solely a testing module for the plugin/commands system, and serves no purpose anymore. commands.py provides basic commands that are both simple and actually useful.
This commit is contained in:
James Lu 2015-06-03 16:09:53 -07:00
parent 2e94e9a7d2
commit 0ed1e13115
2 changed files with 0 additions and 8 deletions

View File

@ -27,5 +27,4 @@ server:
# Plugins to load (omit the .py extension) # Plugins to load (omit the .py extension)
plugins: plugins:
- hello
- commands - commands

View File

@ -1,7 +0,0 @@
import sys, os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import utils
@utils.add_cmd
def hello(irc, source, args):
utils.msg(irc, source, 'hello!')