10 lines
198 B
TOML
10 lines
198 B
TOML
|
[bots]
|
||
|
|
||
|
# define a bot called simplebot
|
||
|
[bots.simplebot]
|
||
|
|
||
|
# The working directory for the bot.
|
||
|
path = "./bots/simplebot"
|
||
|
|
||
|
# What command to use for running the bot
|
||
|
argv = ["python", "simplebot.py"]
|