mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-05 23:30:21 +00:00
build: remove ineffective dynamic import shims
This commit is contained in:
@@ -1 +1,9 @@
|
||||
export { handleSlackMessageAction } from "openclaw/plugin-sdk/slack";
|
||||
import { handleSlackMessageAction as handleSlackMessageActionImpl } from "openclaw/plugin-sdk/slack";
|
||||
|
||||
type HandleSlackMessageAction = typeof import("openclaw/plugin-sdk/slack").handleSlackMessageAction;
|
||||
|
||||
export async function handleSlackMessageAction(
|
||||
...args: Parameters<HandleSlackMessageAction>
|
||||
): ReturnType<HandleSlackMessageAction> {
|
||||
return await handleSlackMessageActionImpl(...args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user