chore: remove unused sync file ops

This commit is contained in:
Stevan Freeborn
2026-01-24 20:51:26 -06:00
parent 88006d08a2
commit b281b154fa
2 changed files with 5 additions and 55 deletions
+4 -4
View File
@@ -34,6 +34,10 @@ pub fn main() -> iced::Result {
.run()
}
fn boot() -> State {
state::State::new()
}
fn update(state: &mut State, message: Message) -> Task<Message> {
match message {
Message::Edit(action) => handler::edit(state, action),
@@ -59,10 +63,6 @@ fn view(state: &State) -> Element<'_, Message> {
.into()
}
fn boot() -> State {
state::State::new()
}
fn subscription(_state: &State) -> Subscription<Message> {
event::listen_with(|e, _status, _win| -> Option<Message> {
match e {