//! kb service implementation
use anyhow::Result;
pub struct KBService {
}
impl KBService {
pub async fn new() -> Result<Self> {
Ok(Self {})
}
pub async fn initialize(&self) -> Result<()> {
Ok(())
}
pub async fn shutdown(&self) -> Result<()> {
Ok(())
}
}