Scratch space for learning atproto app development
1import type { OAuthClient } from '@atproto/oauth-client-node'
2import type pino from 'pino'
3import type { Database } from '#/db'
4import type { Ingester } from '#/firehose/ingester'
5
6export type AppContext = {
7 db: Database
8 ingester: Ingester
9 logger: pino.Logger
10 oauthClient: OAuthClient
11}