mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-03-28 14:56:24 +01:00
Rename two code template
This commit is contained in:
parent
8590366900
commit
9be83fec64
3 changed files with 2 additions and 2 deletions
|
@ -15,11 +15,11 @@ export class Coder {
|
||||||
this.code_template = '';
|
this.code_template = '';
|
||||||
this.code_check_template = '';
|
this.code_check_template = '';
|
||||||
|
|
||||||
readFile('./bots/template.js', 'utf8', (err, data) => {
|
readFile('./bots/execTemplate.js', 'utf8', (err, data) => {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
this.code_template = data;
|
this.code_template = data;
|
||||||
});
|
});
|
||||||
readFile('./bots/codeCheckTemplate.js', 'utf8', (err, data) => {
|
readFile('./bots/lintTemplate.js', 'utf8', (err, data) => {
|
||||||
if (err) throw err;
|
if (err) throw err;
|
||||||
this.code_check_template = data;
|
this.code_check_template = data;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue