@tgintegration/bun
v0.1.0
Published
Bun entrypoint for Telegram integration testing with tgintegration and mtcute
Maintainers
Readme
@tgintegration/bun
Bun package-manager entrypoint for tgintegration.
import { ChatController, TelegramClient } from "@tgintegration/bun";
const client = new TelegramClient({
apiId: Number(process.env.API_ID),
apiHash: process.env.API_HASH!,
storage: "session.db",
});
const controller = new ChatController(client, "@BotListBot");This package re-exports @tgintegration/core and the Bun mtcute TelegramClient.
