11 lines
217 B
Python
Executable File
11 lines
217 B
Python
Executable File
#!/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")
|