feat: 支持 WatchDog

This commit is contained in:
mofeng-git
2026-07-16 20:07:33 +08:00
parent 213359b6c8
commit 50dd419e5a
17 changed files with 1127 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ mod rustdesk;
mod stream;
pub(crate) mod video;
mod vnc;
mod watchdog;
mod web;
pub use atx::{get_atx_config, update_atx_config};
@@ -43,6 +44,7 @@ pub use video::{get_video_config, update_video_config};
pub use vnc::{
get_vnc_config, get_vnc_status, start_vnc_service, stop_vnc_service, update_vnc_config,
};
pub use watchdog::{get_watchdog_config, update_watchdog_config};
pub use web::{get_web_config, update_web_config};
use axum::{extract::State, Json};