mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-03 13:03:43 +00:00
13 lines
426 B
TypeScript
13 lines
426 B
TypeScript
// Memory Core plugin module implements public artifacts behavior.
|
|
import {
|
|
listMemoryHostPublicArtifacts,
|
|
type MemoryPluginPublicArtifact,
|
|
} from "openclaw/plugin-sdk/memory-host-core";
|
|
import type { OpenClawConfig } from "../api.js";
|
|
|
|
export async function listMemoryCorePublicArtifacts(params: {
|
|
cfg: OpenClawConfig;
|
|
}): Promise<MemoryPluginPublicArtifact[]> {
|
|
return await listMemoryHostPublicArtifacts(params);
|
|
}
|