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,7 +1,7 @@
import { spawn } from "node:child_process";
import {
type MoltbotConfig,
type OpenClawConfig,
CONFIG_PATH,
loadConfig,
readConfigFileSnapshot,
@@ -210,7 +210,7 @@ export async function runGmailSetup(opts: GmailSetupOptions) {
true,
);
const nextConfig: MoltbotConfig = {
const nextConfig: OpenClawConfig = {
...baseConfig,
hooks: {
...baseConfig.hooks,
@@ -278,7 +278,7 @@ export async function runGmailSetup(opts: GmailSetupOptions) {
defaultRuntime.log(`- push endpoint: ${pushEndpoint}`);
defaultRuntime.log(`- hook url: ${hookUrl}`);
defaultRuntime.log(`- config: ${displayPath(CONFIG_PATH)}`);
defaultRuntime.log(`Next: ${formatCliCommand("moltbot webhooks gmail run")}`);
defaultRuntime.log(`Next: ${formatCliCommand("openclaw webhooks gmail run")}`);
}
export async function runGmailService(opts: GmailRunOptions) {