openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines (10 loc) • 299 B
JavaScript
//#region src/gateway/server-runtime-service-shared.ts
/** Creates a heartbeat runner placeholder for minimal/test gateway service state. */
function createNoopHeartbeatRunner() {
return {
stop: () => {},
updateConfig: (_cfg) => {}
};
}
//#endregion
export { createNoopHeartbeatRunner as t };