1
Fork 0
mirror of https://github.com/RGBCube/minearchy-bot synced 2025-07-28 09:27:44 +00:00

Move config to bot root dir

This commit is contained in:
RGBCube 2022-11-27 12:04:17 +03:00
parent ce0dce1f93
commit 577b7ce131
3 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ from . import MinearchyBot
def main() -> None:
install_uvloop()
with (Path(__file__).parent.parent / "config.json").open() as f:
with (Path(__file__).parent / "config.json").open() as f:
config = parse_json(f)
for key in ("HIDE", "NO_UNDERSCORE"):

View file

@ -0,0 +1,4 @@
{
"BOT_TOKEN": "",
"WEBHOOK_URL": ""
}