1 2 3 4 5 6 7 8 9 10
// FIXME: document running the server here mod server; #[tokio::main] async fn main() { if let Err(error) = server::run().await { tracing::error!(%error, "PostgRPC service error! Process stopped"); } }