refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions

View File

@@ -1,6 +1,6 @@
import type { App } from "@slack/bolt";
import type { HistoryEntry } from "../../auto-reply/reply/history.js";
import type { MoltbotConfig, SlackReactionNotificationMode } from "../../config/config.js";
import type { OpenClawConfig, SlackReactionNotificationMode } from "../../config/config.js";
import { resolveSessionKey, type SessionScope } from "../../config/sessions.js";
import type { DmPolicy, GroupPolicy } from "../../config/types.js";
import { logVerbose } from "../../globals.js";
@@ -42,7 +42,7 @@ export function normalizeSlackChannelType(
}
export type SlackMonitorContext = {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
accountId: string;
botToken: string;
app: App;
@@ -115,7 +115,7 @@ export type SlackMonitorContext = {
};
export function createSlackMonitorContext(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
accountId: string;
botToken: string;
app: App;