UNPKG

@atproto/ozone

Version:

Backend service for moderating the Bluesky network.

11 lines (7 loc) 199 B
import { Generated } from 'kysely' export const tableName = 'signing_key' export interface SigningKey { id: Generated<number> key: string } export type PartialDB = { [tableName]: SigningKey }