make the prefix the same as the one used by the bot (#19)

This commit is contained in:
Almeida 2020-06-19 14:18:29 +01:00 committed by GitHub
parent 8c5818c57d
commit 666ad4692f
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -39,7 +39,7 @@
## 1.6.0 ## 1.6.0
- Added `>cleanup` command. - Added `$>cleanup` command.
- Changed JS to always use `-p` to evaluate expressions. - Changed JS to always use `-p` to evaluate expressions.
## 1.5.0 ## 1.5.0
@ -56,7 +56,7 @@
- `parallel` to build and setup in parallel. - `parallel` to build and setup in parallel.
- `cleanup` to periodically kill containers. - `cleanup` to periodically kill containers.
- `cpus`, `memory`, `timeout`, `concurrent` can be per-compiler. - `cpus`, `memory`, `timeout`, `concurrent` can be per-compiler.
- Added more info to the `>about` command. - Added more info to the `$>about` command.
- Added logging about images and containers. - Added logging about images and containers.
- Changed folder names to use the current time. - Changed folder names to use the current time.
- Fixed `concurrent` option being ignored. - Fixed `concurrent` option being ignored.

View file

@ -8,7 +8,7 @@ Sandboxed code execution discord bot.
## Usage ## Usage
````cpp ````cpp
>```cpp $>```cpp
#include <iostream> #include <iostream>
int main() int main()
@ -19,7 +19,7 @@ int main()
```` ````
```py ```py
>`py print('hello world')` $>`py print('hello world')`
``` ```
## Supported Languages and Options ## Supported Languages and Options

View file

@ -1,7 +1,7 @@
{ {
"owner": "12345678901234", "owner": "12345678901234",
"token": "MTU1fdsYNTRb2RT.FcD2l1ig.jIuKqwertyd432RROhF5A", "token": "MTU1fdsYNTRb2RT.FcD2l1ig.jIuKqwertyd432RROhF5A",
"prefix": ">", "prefix": "$>",
"codePrefix": ">", "codePrefix": "$>",
"myriad": "8081" "myriad": "8081"
} }