🧹 remove unnecessary files

This commit is contained in:
kawamataryo
2023-10-11 07:34:17 +09:00
parent 50f296b39f
commit 9d0506d2c3
2 changed files with 2 additions and 22 deletions

View File

@@ -1,20 +0,0 @@
import { BskyClient } from "../src/lib/bskyClient"
const searchBskyUsers = async () => {
const agent = await BskyClient.createAgent({
identifier: process.env.BSKY_IDENTIFIER as string,
password: process.env.BSKY_PASSWORD as string,
})
const result = await agent.searchUser({
term: "llamaindex",
limit: 3,
})
return result
}
(async () => {
const result = await searchBskyUsers()
console.log(result)
})()