capnweb_client/
stubs.rs

1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum StubError {
5    #[error("Stub error: {0}")]
6    Error(String),
7}
8
9pub struct Capability<T> {
10    _phantom: std::marker::PhantomData<T>,
11}