#[derive(Debug, Clone)]
pub struct ServerOptions {
pub js_bundle: String,
pub wasm_bundle: String,
pub wasm_js_bundle: String,
pub snippets: String,
}
#[cfg(feature = "dflt-engine")]
impl Default for ServerOptions {
fn default() -> Self {
Self {
js_bundle: "dist/pkg/perseus_engine.js".to_string(),
wasm_bundle: "dist/pkg/perseus_engine_bg.wasm".to_string(),
wasm_js_bundle: "dist/pkg/perseus_engine_bg.wasm.js".to_string(),
snippets: "dist/pkg/snippets".to_string(),
}
}
}