MULTI-BOARD !

This commit is contained in:
Haapy
2026-05-15 11:57:12 +00:00
parent a831b22213
commit 66ea8b2b69
11 changed files with 746 additions and 94 deletions

View File

@@ -2,7 +2,10 @@ mod pty;
mod storage;
use pty::{pty_kill, pty_resize, pty_spawn, pty_write, PtyState};
use storage::{board_load, board_save};
use storage::{
board_create, board_delete, board_load, board_rename, board_save, boards_load_index,
boards_set_current,
};
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
@@ -35,8 +38,13 @@ pub fn run() {
pty_write,
pty_resize,
pty_kill,
boards_load_index,
board_save,
board_load,
board_create,
board_rename,
board_delete,
boards_set_current,
])
.run(tauri::generate_context!())
.expect("error while running tauri application");