Source code for modules.snippets.d10

from random import randint
from util import commands


[docs]@commands(".d10") def d10(bot, message, channel): bot.say(channel, str(randint(1, 10)))