pub mod antenna; use async_trait::async_trait; use schemars::JsonSchema; use crate::error::Error; #[async_trait] trait Repository { async fn pack(self) -> Result; }