This commit is contained in:
Marsway 2026-01-13 17:24:32 +08:00
parent e1f1bf76ad
commit 5e38fff41d
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
from __future__ import annotations
import logging
from typing import Any
from app.jobs.base import BaseJob
logger = logging.getLogger("connecthub.test.job")
class testJob(BaseJob):
job_id = "test.job"
def run(self, params: dict[str, Any], secrets: dict[str, Any]) -> dict[str, Any]:
message = str(params.get("message") or "").strip()
logger.info("Message says:" + message)
return {"message": "hello, world"}