move WellKnownResponse to src/types/

This commit is contained in:
bitfl0wer 2023-12-03 13:04:17 +01:00
parent 8224acf897
commit 5792c61d09
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 1 additions and 5 deletions

View File

@ -106,6 +106,7 @@ compile_error!("feature \"rt\" and feature \"rt_multi_thread\" cannot be enabled
use errors::ChorusResult;
use serde::{Deserialize, Serialize};
use types::types::domains_configuration::WellKnownResponse;
use url::{ParseError, Url};
use crate::errors::ChorusError;
@ -223,11 +224,6 @@ impl UrlBundle {
}
}
#[derive(Deserialize)]
struct WellKnownResponse {
pub(crate) api: String,
}
#[cfg(test)]
mod lib {
use super::*;