This commit is contained in:
siage 2025-05-26 12:14:40 +08:00
parent 5b1e74a2e5
commit 7cf1a1809e

View File

@ -51,7 +51,6 @@ import {
async function main() {
try {
console.log("Starting Shrimp Task Manager service...");
const ENABLE_GUI = process.env.ENABLE_GUI === "true";
if (ENABLE_GUI) {
@ -458,8 +457,6 @@ async function main() {
// 建立連接
const transport = new StdioServerTransport();
await server.connect(transport);
console.log("Shrimp Task Manager service started");
} catch (error) {
process.exit(1);
}