tauri-plugin-fs-stream 0.1.0

File Streaming API for Tauri
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[path = "src/cmds/scope.rs"]
mod scope;

fn main() {
    tauri_plugin::Builder::new(&[
			"open_read_file_stream",
			"open_read_text_file_lines_stream",
			"open_write_file_stream",
			"close_all_file_streams",
		])
		.global_scope_schema(schemars::schema_for!(scope::ScopeSchema))
        .build();
}