10 lines
209 B
Python
10 lines
209 B
Python
'''An extention containing functionality exclusive to the bot owner'''
|
|
|
|
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
async def setup(bot):
|
|
'''Empty setup function for the owner.py cog'''
|
|
pass
|