3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-25 04:02:45 +01:00
PyLink/plugins/hello.py

8 lines
187 B
Python
Raw Normal View History

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!')