mirror of
https://github.com/kind-0/nsecbunkerd.git
synced 2026-08-01 07:21:42 +00:00
7 lines
271 B
TypeScript
7 lines
271 B
TypeScript
import { NDKKind, NDKRpcRequest } from "@nostr-dev-kit/ndk";
|
|
import AdminInterface from "../index.js";
|
|
|
|
export default async function ping(admin: AdminInterface, req: NDKRpcRequest) {
|
|
return admin.rpc.sendResponse(req.id, req.pubkey, "pong", NDKKind.NostrConnect);
|
|
}
|