Skip to content

Commit

Permalink
feat: make duckdb client config public
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Feb 20, 2025
1 parent 41023f1 commit 843eb41
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/duckdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug)]
pub struct Client {
connection: Connection,
config: Config,
/// The client's configuration.
pub config: Config,
}

/// Configuration for a client.
Expand Down

0 comments on commit 843eb41

Please sign in to comment.