Purge collectors and info page

This commit is contained in:
2026-05-15 15:46:42 +02:00
parent 428e75488d
commit ba6ce926fc
15 changed files with 26 additions and 356 deletions

View File

@@ -42,9 +42,6 @@ pub enum Pages {
#[page("404", NotFound)]
NotFound(page::not_found::Model),
#[page("info", Info)]
Info(page::info::Model),
#[page("lights", Lights)]
Lights(page::lights::Model),
}
@@ -52,7 +49,6 @@ pub enum Pages {
#[derive(Debug)]
pub enum PageMsg {
NotFound(page::not_found::Msg),
Info(page::info::Msg),
Lights(page::lights::Msg),
}