1//! BluePDS binary entry point. 2 3use anyhow::Context as _; 4 5#[tokio::main(flavor = "multi_thread")] 6async fn main() -> anyhow::Result<()> { 7 bluepds::run().await.context("failed to run application") 8}