global: snapshot

This commit is contained in:
nym21
2025-10-23 18:30:29 +02:00
parent 6cd60a064b
commit 4f1653b086
234 changed files with 758 additions and 722 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use axum::{
response::{Redirect, Response},
routing::get,
};
use brk_structs::{Address, AddressStats};
use brk_types::{Address, AddressStats};
use crate::{
VERSION,
+5 -3
View File
@@ -8,8 +8,8 @@ use axum::{
response::{IntoResponse, Response},
};
use brk_error::{Error, Result};
use brk_interface::{Output, Params};
use brk_structs::Format;
use brk_query::{Output, Params};
use brk_types::Format;
use quick_cache::sync::GuardResult;
use vecdb::Stamp;
@@ -41,7 +41,9 @@ fn req_to_response_res(
headers: HeaderMap,
Query(params): Query<Params>,
AppState {
interface, cache, ..
query: interface,
cache,
..
}: AppState,
) -> Result<Response> {
todo!();
+2 -2
View File
@@ -5,9 +5,9 @@ use axum::{
response::{IntoResponse, Redirect, Response},
routing::get,
};
use brk_interface::{PaginatedMetrics, PaginationParam, Params, ParamsDeprec, ParamsOpt};
use brk_structs::{Index, IndexInfo, Limit, Metric, MetricCount, Metrics};
use brk_query::{PaginatedMetrics, PaginationParam, Params, ParamsDeprec, ParamsOpt};
use brk_traversable::TreeNode;
use brk_types::{Index, IndexInfo, Limit, Metric, MetricCount, Metrics};
use crate::{
VERSION,
+1 -1
View File
@@ -10,7 +10,7 @@ use axum::{
response::{Html, Redirect, Response},
routing::get,
};
use brk_structs::Health;
use brk_types::Health;
use crate::{
VERSION,
@@ -5,7 +5,7 @@ use axum::{
response::{Redirect, Response},
routing::get,
};
use brk_structs::{Transaction, TxidPath};
use brk_types::{Transaction, TxidPath};
use crate::{
VERSION,