From f9744da64d414b5e6ca626910a470d1ae1cb2284 Mon Sep 17 00:00:00 2001 From: Jari Mustonen Date: Wed, 18 Mar 2026 10:43:21 +0200 Subject: [PATCH] style: fix import order in memory-core --- extensions/memory-core/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/memory-core/index.ts b/extensions/memory-core/index.ts index 7ea7116c08f..e176ea619fe 100644 --- a/extensions/memory-core/index.ts +++ b/extensions/memory-core/index.ts @@ -1,5 +1,5 @@ -import type { MemoryPromptSectionBuilder } from "openclaw/plugin-sdk/memory-core"; import { definePluginEntry } from "openclaw/plugin-sdk/core"; +import type { MemoryPromptSectionBuilder } from "openclaw/plugin-sdk/memory-core"; const buildPromptSection: MemoryPromptSectionBuilder = ({ availableTools, citationsMode }) => { if (!availableTools.has("memory_search") && !availableTools.has("memory_get")) {