an attempt to make a lightweight, easily self-hostable, scoped bluesky appview
at main 316 B view raw
1import { Database } from "jsr:@db/sqlite@0.11"; 2 3export type indexHandlerContext = { 4 op: string; 5 doer: string; // the formal term for this is "repo" but whatever right 6 rev?: string; 7 cid?: string; 8 aturi: string; 9 indexsrc: string; 10 value: Record<string, unknown>; 11 //userdbname: string; 12 db: Database; 13}