Change crate type from lib

This commit is contained in:
2023-09-29 19:47:40 +02:00
parent 01a7576d7f
commit 4cf6b628ee
4 changed files with 4 additions and 7 deletions

10
frontend/src/main.rs Normal file
View File

@ -0,0 +1,10 @@
mod app;
mod components;
mod css;
mod page;
use seed::App;
pub fn main() {
App::start("app", app::init, app::update, app::view);
}