chore: auto-fix lint & formatting [skip ci]

This commit is contained in:
github-actions[bot] 2026-08-02 19:42:35 +00:00
parent 0af6b9a4b8
commit 5a98e45544
3 changed files with 3 additions and 11 deletions

View file

@ -4,11 +4,7 @@ import type { PlatformDriver, SendResult } from "../types";
export class TelegramDriver implements PlatformDriver {
readonly id = "telegram";
async send(
_message: NeutralMessage,
_target: Route["target"],
_env: Env,
): Promise<SendResult> {
async send(_message: NeutralMessage, _target: Route["target"], _env: Env): Promise<SendResult> {
return { ok: false, error: "Telegram driver not implemented yet" };
}
}