Skip to content

Commit 4d5dea1

Browse files
[v0.0.2 🎉] mirror bug fixed 🔥
1 parent 956fa9a commit 4d5dea1

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "executeme",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "A robust and secure backend service for executing user-submitted code in isolated Docker containers. Supports multiple programming languages like Python, Node.js, and Java, with resource limiting for safe execution. Ideal for online compilers, coding platforms, and educational tools.",
55
"scripts": {
66
"dev": "nodemon app.js",

websites/src/app/_actions/execute.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export async function executeCodeAction(input: Input): Promise<Output> {
2626
output: response.data.output,
2727
responseTime: Math.round(end - start),
2828
};
29+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2930
} catch (error: any) {
3031
const end = performance.now();
3132
const responseTime = Math.round(end - start);

0 commit comments

Comments
 (0)