NAC_Blockchain/nac-sdk/src/adapters/l5_application.rs

13 lines
243 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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