cdk-supabase 0.17.0

Supabase storage backend for CDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Supabase database backend for CDK
//!
//! This crate provides Supabase-based database implementations for the CDK wallet.

mod error;
#[cfg(feature = "wallet")]
/// Wallet database implementation for Supabase
pub mod wallet;

pub use error::Error;
#[cfg(feature = "wallet")]
pub use wallet::{SupabaseAuth, SupabaseAuthResponse, SupabaseWalletDatabase};