this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 317 B view raw
1import { Database } from './db' 2import { DidResolver } from '@atproto/did-resolver' 3 4export type AppContext = { 5 db: Database 6 didResolver: DidResolver 7 cfg: Config 8} 9 10export type Config = { 11 port: number 12 hostname: string 13 postgresConnectionString: string 14 subscriptionEndpoint: string 15 serviceDid: string 16}