I've coded a discord bot and I tried to push it on heroku. However, I need to run multiple files and when I try to do that I runs only the last sentence. So how can I put multiple workers in a procfile?
worker: python mainfunctions.py
worker: python commands.py
(it only runs commands.py)