feat:移除了弹窗,服务器添加sls

This commit is contained in:
2026-09-08 22:39:45 +08:00
commit 6a295f9a7a
4082 changed files with 1322534 additions and 0 deletions

View File

@ -0,0 +1,23 @@
//! Managed dedicated Minecraft servers: manifests, downloads, and process control.
//! Each server lives in its own directory under the launcher's `servers` folder
//! and is described by an `axolotl-server.json` manifest.
mod files;
mod forge;
mod lifecycle;
mod logs;
mod manage;
mod manifest;
mod modpack;
mod ports;
pub use self::files::{download_file, read_file, write_file};
pub use self::forge::install_forge;
pub use self::lifecycle::{
kill, resize_console, send_command, send_console_input, start, stop,
};
pub use self::logs::{clear_log, get_log_buffer};
pub use self::manage::{create, delete, get, list, set_icon, update_settings};
pub use self::manifest::{ModpackInfo, ServerInfo, ServerManifest};
pub use self::modpack::install_modpack;
pub use self::ports::{PortProcessInfo, kill_port_process, port_process};