From e35b1b6b6e50effaddfdea9da395ca12fb5ddd00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=B3=E5=85=89=E5=B0=91=E5=B9=B4?= <849317537@qq.com> Date: Thu, 31 Oct 2024 11:53:49 +0000 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E6=97=B6=E5=8F=96=E6=B6=88js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/service/handler.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/service/handler.py b/test/service/handler.py index d3a451c..3482e37 100644 --- a/test/service/handler.py +++ b/test/service/handler.py @@ -3,7 +3,7 @@ import sys import subprocess import traceback -TARGET_LANGUAGE = set(["python", "cpp", "go", "node", "rust"]) +TARGET_LANGUAGE = set(["python", "cpp", "go", "rust"]) PROJECT_PATH = "/home/rocker/project" def go_handler(): @@ -69,6 +69,8 @@ def main(): elif language == "rust": err, main_path = rust_handler() cmd.extend([main_path]) + elif language == "javascript": + node_handler() else: ...