robotech 1.8.0

Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications.
1
2
3
4
5
6
7
8
use reqwest::Error as ReqwestError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum InfluxdbError {
    #[error("构建错误: {0}")]
    Build(#[from] ReqwestError),
}