Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1/**
2 * Shared database utilities for wisp.place
3 *
4 * This package provides database query functions that work across both
5 * main-app (Bun SQL) and hosting-service (postgres) environments.
6 *
7 * The actual database client is passed in by the consuming application.
8 */
9
10export * from './types';
11
12// Re-export types
13export type {
14 DomainLookup,
15 CustomDomainLookup,
16 SiteRecord,
17 OAuthState,
18 OAuthSession,
19 OAuthKey,
20 CookieSecret,
21 AdminUser
22} from './types';