mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 03:20:49 +00:00
10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
import { loadConfig, writeConfigFile } from "../../config/config.js";
|
|
import type { PluginRuntime } from "./types.js";
|
|
|
|
export function createRuntimeConfig(): PluginRuntime["config"] {
|
|
return {
|
|
loadConfig,
|
|
writeConfigFile,
|
|
};
|
|
}
|