This commit is contained in:
fengchuanhn@gmail.com
2026-05-16 23:03:27 +08:00
parent c0ddaceb43
commit e6c8c18be0
6 changed files with 519 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ pub mod commands;
pub mod ffmpeg;
pub mod http;
pub mod js_runtime;
pub mod nodejs;
pub mod oss;
use tauri::Manager;
@@ -28,6 +29,9 @@ pub fn run() {
commands::quickjs::run_quickjs_script,
commands::quickjs::run_quickjs_script_source,
commands::quickjs::list_quickjs_scripts,
commands::nodejs::run_nodejs_script,
commands::nodejs::run_nodejs_script_source,
commands::nodejs::list_nodejs_scripts,
])
.run(tauri::generate_context!())
.expect("error while running tauri application");