11 lines
217 B
Python
11 lines
217 B
Python
|
#!/usr/bin/env python3
|
||
|
"""
|
||
|
The bot's version number.
|
||
|
"""
|
||
|
from module import commands
|
||
|
|
||
|
@commands('version')
|
||
|
def version(bot, trigger):
|
||
|
"""Displays the current version of Fulvia running."""
|
||
|
bot.reply("Fulvia v1.0.0")
|