Move beacon state endpoints to a separate module. (#8529)

Part of the http api refactor to move endpoint handlers to separate modules.

This should improve code maintainability, incremental compilation time and rust analyzer performance.


  


Co-Authored-By: Jimmy Chen <jchen.tc@gmail.com>
This commit is contained in:
Jimmy Chen
2025-12-04 17:58:57 +11:00
committed by GitHub
parent 41ba135034
commit 51d0336020
4 changed files with 830 additions and 666 deletions

View File

@@ -0,0 +1,3 @@
use warp::filters::BoxedFilter;
pub type ResponseFilter = BoxedFilter<(warp::reply::Response,)>;