cdk_supabase/lib.rs
1//! Supabase database backend for CDK
2//!
3//! This crate provides Supabase-based database implementations for the CDK wallet.
4
5mod error;
6#[cfg(feature = "wallet")]
7/// Wallet database implementation for Supabase
8pub mod wallet;
9
10pub use error::Error;
11#[cfg(feature = "wallet")]
12pub use wallet::{SupabaseAuth, SupabaseAuthResponse, SupabaseWalletDatabase};