We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94d9a1 commit cae037bCopy full SHA for cae037b
1 file changed
src/config.rs
@@ -124,6 +124,10 @@ impl Default for FlightSQLClientConfig {
124
}
125
126
127
+#[cfg(feature = "http")]
128
+#[derive(Clone, Debug, Default, Deserialize)]
129
+pub struct HttpServerConfig {}
130
+
131
#[derive(Clone, Debug, Default, Deserialize)]
132
pub struct AppConfig {
133
#[serde(default)]
@@ -138,6 +142,9 @@ pub struct AppConfig {
138
142
#[cfg(feature = "flightsql")]
139
143
140
144
pub flightsql_server: FlightSQLServerConfig,
145
+ #[cfg(feature = "http")]
146
+ #[serde(default)]
147
+ pub http_server: HttpServerConfig,
141
148
149
150
fn default_execution_config() -> ExecutionConfig {
0 commit comments