agp-controller 0.1.1

Controller service and control API to configure the AGP data plane through the control plane.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright AGNTCY Contributors (https://github.com/agntcy)
// SPDX-License-Identifier: Apache-2.0

use thiserror::Error;

#[derive(Error, Debug)]
pub enum ControllerError {
    #[error("configuration error {0}")]
    ConfigError(String),
    #[error("connection error: {0}")]
    ConnectionError(String),
    #[error("datapath error: {0}")]
    DatapathError(String),
}