panorama/daemon/src/service.rs

5 lines
62 B
Rust
Raw Permalink Normal View History

2021-11-04 08:44:41 +00:00
pub trait Service<Request> {
type Response;
type Error;
}