mirror of
https://github.com/dgw/sopel-amatsukaze.git
synced 2025-06-20 22:17:20 +02:00
13 lines
289 B
Python
13 lines
289 B
Python
# coding=utf8
|
|
"""sopel-amatsukaze.byte
|
|
|
|
Collect bytes and grow your HDD size.
|
|
"""
|
|
from __future__ import unicode_literals, absolute_import, division, print_function
|
|
|
|
from sopel import plugin
|
|
|
|
|
|
@plugin.command('byte')
|
|
def bytes_game(bot, trigger):
|
|
bot.say('Hello, world!')
|