Scratch space for learning atproto app development
1export type DatabaseSchema = { 2 post: Post 3} 4 5export type Post = { 6 uri: string 7 text: string 8 indexedAt: string 9}