mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-25 05:31:11 +00:00
11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
// Msteams plugin module implements http error behavior.
|
|
import { createProviderHttpError } from "openclaw/plugin-sdk/provider-http";
|
|
|
|
export async function createMSTeamsHttpError(
|
|
response: Response,
|
|
label: string,
|
|
options?: { statusPrefix?: string },
|
|
): Promise<Error> {
|
|
return await createProviderHttpError(response, label, options);
|
|
}
|