melvin_ob/http_handler/
mod.rs

1//! This module provides core structs, enums, and utilities for interacting with the DRS backend system.
2//! It includes functionalities such as retrieving the objective list or the most recent observation.
3
4mod common;
5pub mod http_client;
6pub mod http_request;
7pub mod http_response;
8
9pub use common::BeaconObjective;
10pub use common::HTTPError;
11pub(crate) use common::ImageObjective;
12pub(crate) use common::ZoneType;