14 lines
360 B
Python
14 lines
360 B
Python
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from app.jobs.base import BaseJob
|
|
|
|
logger = logging.getLogger("connecthub.extensions.sync_oa_to_didi")
|
|
|
|
class testJob(BaseJob):
|
|
job_id = "test.job"
|
|
|
|
def run(self, params: dict[str, Any], secrets: dict[str, Any]) -> dict[str, Any]:
|
|
return {"message": "hello, world"} |