8 lines
267 B
Python
8 lines
267 B
Python
import os
|
|
|
|
def setup(bot):
|
|
for filename in os.listdir(os.path.dirname(__file__)):
|
|
if filename.endswith(".py") and not filename.startswith("_"):
|
|
bot.load_extension(f"bot.cogs.{filename[:-3]}")
|
|
print(f"Załadowano: {filename[:-3]}")
|