lagudomeze
lagudomeze
```rust pub fn with_level(level: log::LevelFilter) { #[cfg(target_arch = "wasm32")] wasm::start(level); #[cfg(not(target_arch = "wasm32"))] { // Use ndjson in release mode, pretty logging while debugging. // here add some cfg! to...
fix groups is always empty
define two routes bellow #[oai(path = "/materials:search", method = "post")] #[oai(path = "/materials:batch_delete", method = "post")] it's normal on swagger html, but request to batch_delete always match to `/materials:search` ?...