配置导入导出
Some checks failed
Build Linux / Build Linux x86_64 (push) Has been cancelled
Build Test / Build Test (Linux) (push) Has been cancelled
Build Test / Build Test (Windows) (push) Has been cancelled
Build Test / Build Test (macOS) (push) Has been cancelled
Build Test / Build Test Summary (push) Has been cancelled

This commit is contained in:
2025-09-06 18:43:52 +08:00
parent d90169ac6d
commit e4245a6fed
11 changed files with 588 additions and 41 deletions

View File

@@ -58,6 +58,7 @@ use commands::relay_stations::{
relay_stations_list, relay_station_get, relay_station_create, relay_station_update,
relay_station_delete, relay_station_toggle_enable, relay_station_sync_config,
relay_station_restore_config, relay_station_get_current_config,
relay_stations_export, relay_stations_import,
};
use commands::relay_adapters::{
relay_station_get_info, relay_station_get_user_info,
@@ -97,6 +98,7 @@ fn main() {
tauri::Builder::default()
.plugin(tauri_plugin_dialog::init())
.plugin(tauri_plugin_shell::init())
.plugin(tauri_plugin_fs::init())
.plugin(tauri_plugin_clipboard_manager::init())
.plugin(tauri_plugin_log::Builder::new()
.level(log::LevelFilter::Debug)
@@ -382,6 +384,8 @@ fn main() {
relay_station_sync_config,
relay_station_restore_config,
relay_station_get_current_config,
relay_stations_export,
relay_stations_import,
relay_station_get_info,
relay_station_get_user_info,
relay_station_test_connection,