Rename two code template

This commit is contained in:
“Qu 2025-01-12 23:56:10 +08:00
parent 8590366900
commit 9be83fec64
3 changed files with 2 additions and 2 deletions

View file

@ -15,11 +15,11 @@ export class Coder {
this.code_template = '';
this.code_check_template = '';
readFile('./bots/template.js', 'utf8', (err, data) => {
readFile('./bots/execTemplate.js', 'utf8', (err, data) => {
if (err) throw err;
this.code_template = data;
});
readFile('./bots/codeCheckTemplate.js', 'utf8', (err, data) => {
readFile('./bots/lintTemplate.js', 'utf8', (err, data) => {
if (err) throw err;
this.code_check_template = data;
});