move cogs to ext and create module
This commit is contained in:
parent
07e638985e
commit
cd1d899054
4
main.py
4
main.py
|
@ -14,10 +14,10 @@ bot = Bot(command_prefix="~ak ")
|
||||||
token = config['AUTH']['token']
|
token = config['AUTH']['token']
|
||||||
|
|
||||||
# load extensions
|
# load extensions
|
||||||
for file in os.listdir("src/cogs"):
|
for file in os.listdir("src/ext"):
|
||||||
if file.endswith(".py"):
|
if file.endswith(".py"):
|
||||||
name = file[:-3]
|
name = file[:-3]
|
||||||
bot.load_extension(f"src.cogs.{name}")
|
bot.load_extension(f"src.ext.{name}")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
bot.run(token)
|
bot.run(token)
|
Loading…
Reference in New Issue