derive `ServicesError`

This commit is contained in:
Al Liu 2023-11-12 21:48:29 +08:00
parent 7ee9c5d869
commit 2cdf7e2329
No known key found for this signature in database
GPG Key ID: C8AE9A6E0166923E
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ bincode = "1"
overwatch-rs = { path = "../../overwatch-rs" }
overwatch-derive = { path = "../../overwatch-derive" }
tracing = "*"
thiserror = "1"
async-trait = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.0.18", features = ["derive"] }

View File

@ -11,7 +11,7 @@ use chat::*;
use clap::Parser;
use network::*;
use overwatch_derive::*;
use overwatch_rs::{overwatch::*, services::handle::ServiceHandle, thiserror};
use overwatch_rs::{overwatch::*, services::handle::ServiceHandle};
/// Simple program to greet a person
#[derive(Parser, Debug)]