blob: 06b7d349babf1170717e014ed8c16a1378410b15 (
plain)
1
2
3
4
5
6
7
8
|
//! Declare an error type for the `tor-hsservice` crate.
use thiserror::Error;
/// An error affecting the operation of an onion service.
#[derive(Clone, Debug, Error)]
#[non_exhaustive]
pub enum Error {}
|