From 0ed1e13115a9524875105322f16998e4de2c4efa Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 3 Jun 2015 16:09:53 -0700 Subject: [PATCH] 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. --- config.yml.example | 1 - plugins/hello.py | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 plugins/hello.py diff --git a/config.yml.example b/config.yml.example index 7eca2fa..1718760 100644 --- a/config.yml.example +++ b/config.yml.example @@ -27,5 +27,4 @@ server: # Plugins to load (omit the .py extension) plugins: - - hello - commands diff --git a/plugins/hello.py b/plugins/hello.py deleted file mode 100644 index 411ef10..0000000 --- a/plugins/hello.py +++ /dev/null @@ -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!')