mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-05 10:02:56 +00:00
12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
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);
|
|
}
|