mc-minder 0.4.8

A smart management suite for Minecraft Fabric servers on Linux/Termux/Android
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod monitor;
pub mod ai;
pub mod rcon;
pub mod context;
pub mod api;
pub mod command_sender;

pub use config::Config;
pub use monitor::{LogMonitor, TmuxChatCapture, FileChatCapture};
pub use ai::{AiClient, ChatResult, Message};
pub use rcon::RconClient;
pub use context::ContextManager;
pub use command_sender::{CommandSender, MultiCommandSender};