Add support for custom sublists

This commit is contained in:
2023-09-23 15:44:36 +02:00
parent ec5daba300
commit 1092860b42
6 changed files with 194 additions and 51 deletions

12
src/main.rs Normal file
View File

@ -0,0 +1,12 @@
mod app;
mod css;
mod custom_list;
mod fuzzy;
mod query;
mod song;
use seed::App;
fn main() {
App::start("app", app::init, app::update, app::view);
}