mirror of
https://github.com/snachodog/tok-to-insta-follower-bridge.git
synced 2025-04-04 03:01:25 -06:00
22 lines
483 B
TypeScript
22 lines
483 B
TypeScript
import type { PlasmoMessaging } from "@plasmohq/messaging";
|
|
import { BskyClient } from "~lib/bskyClient";
|
|
|
|
const handler: PlasmoMessaging.MessageHandler = async (req, res) => {
|
|
const { session, subjectDid } = req.body;
|
|
const client = BskyClient.createAgentFromSession(session);
|
|
|
|
try {
|
|
res.send({
|
|
result: await client.block(subjectDid),
|
|
});
|
|
} catch (e) {
|
|
res.send({
|
|
error: {
|
|
message: e.message,
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
export default handler;
|