add ResponseBase
Some checks are pending
Audit / audit (push) Waiting to run
Deny / audit (push) Waiting to run

This commit is contained in:
hinto.janai 2024-06-19 19:02:44 -04:00
parent f7be3e127a
commit 1b326067c3
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 22 additions and 0 deletions

View file

@ -3,4 +3,7 @@
//! TODO
mod binary_string;
mod response_base;
pub use binary_string::BinaryString;
pub use response_base::ResponseBase;

View file

@ -0,0 +1,19 @@
//! TODO
//---------------------------------------------------------------------------------------------------- Import
use crate::Status;
//---------------------------------------------------------------------------------------------------- ResponseBase
/// TODO
pub struct ResponseBase {
/// TODO
status: Status,
/// TODO
untrusted: bool,
}
//---------------------------------------------------------------------------------------------------- Tests
#[cfg(test)]
mod test {
// use super::*;
}