Form for extractor html

This commit is contained in:
poslop
2024-06-07 04:08:59 -05:00
parent a05d64a9c6
commit e7bf93d4d1
10 changed files with 181 additions and 77 deletions

View File

@@ -1,6 +1,6 @@
mod app;
mod views;
// mod extractor;
mod extractor;
mod config_settings;
use app::App;
@@ -11,6 +11,6 @@ fn main() {
console_error_panic_hook::set_once();
yew::Renderer::<App>::new().render();
spawn_local(async move {
init_config().await;
let _ = init_config().await;
})
}