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 untrusted user: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@
## 1.6.0
- Added `>cleanup` command.
- Added `$>cleanup` command.
- Changed JS to always use `-p` to evaluate expressions.
## 1.5.0
@ -56,7 +56,7 @@
- `parallel` to build and setup in parallel.
- `cleanup` to periodically kill containers.
- `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.
- Changed folder names to use the current time.
- Fixed `concurrent` option being ignored.

View File

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

View File

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