this repo has no description
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}