V1.0 working version

This commit is contained in:
Patryk Mazur
2026-04-22 01:00:59 +02:00
parent 5a9fba903d
commit 474793bcaa
5 changed files with 76 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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]}")