Compare commits

..

1 Commits

Author SHA1 Message Date
5d386bd9b7 Put prefix in env 2021-08-26 14:04:33 +12:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1,2 @@
TOKEN=
PREFIX=!

View File

@@ -1,7 +1,7 @@
from discord.ext import commands
from os import getenv
bot = commands.Bot(command_prefix='@')
bot = commands.Bot(command_prefix=getenv("PREFIX"))
@bot.command()
@@ -15,4 +15,3 @@ def main():
if __name__ == "__main__":
main()