MULTI-BOARD !
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user