UNPKG

@atproto/ozone

Version:

Backend service for moderating the Bluesky network.

14 lines (10 loc) 276 B
import { Generated } from 'kysely' export const firehoseCursorTableName = 'firehose_cursor' export interface FirehoseCursor { service: string cursor: number | null updatedAt: Generated<string> } export type PartialDB = { [firehoseCursorTableName]: FirehoseCursor }