//! L5应用层适配器(开发中) use crate::error::Result; use super::config::L5Config; pub struct L5ApplicationAdapter; impl L5ApplicationAdapter { pub async fn new(_config: &L5Config) -> Result { Ok(Self) } }