10 lines
153 B
Python
10 lines
153 B
Python
|
|
||
|
class Cog:
|
||
|
def __init__(self, bot):
|
||
|
self.bot = bot
|
||
|
self.loop = bot.loop
|
||
|
|
||
|
@property
|
||
|
def db(self):
|
||
|
return self.bot.db
|