UNPKG

longurl-js

Version:

LongURL - Programmable URL management framework with entity-driven design and production-ready infrastructure

10 lines (9 loc) 370 B
/** * Storage Adapters * * This module provides the adapter pattern for different storage backends. */ export { StorageAdapter } from '../core/storage/index.js'; export type { EntityData, AnalyticsData, AdapterConfig } from '../core/storage/index.js'; export { SupabaseAdapter } from './supabase/index.js'; export type { SupabaseConfig } from './supabase/index.js';