/// Global configuration for the Nest telnet server.
usebevy::prelude::Resource;#[derive(Debug, Clone, Resource)]pubstructNestConfig{/// Enable GMCP negotiation and allow sending/receiving GMCP subnegotiations.
/// When true, the server will automatically:
/// - Offer `WILL GMCP` on connect.
/// - Reply `WILL GMCP` to an incoming `DO GMCP`.
/// - Reply `DO GMCP` to an incoming `WILL GMCP`.
pubenable_gmcp:bool,
}implDefault forNestConfig{fndefault()->Self{Self{ enable_gmcp:true}}}