mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-12 07:53:32 -07:00
18 lines
463 B
Rust
18 lines
463 B
Rust
//! Standalone website serving for BRK.
|
|
//!
|
|
//! This crate provides website serving without any BRK data layer dependencies.
|
|
//! It can serve the embedded website or from a filesystem path.
|
|
//!
|
|
//! See the `website` example for how to run a standalone server.
|
|
|
|
mod error;
|
|
mod handlers;
|
|
mod headers;
|
|
mod router;
|
|
mod website;
|
|
|
|
pub use error::{Error, Result};
|
|
pub use headers::HeaderMapExtended;
|
|
pub use router::router;
|
|
pub use website::{EMBEDDED_WEBSITE, Website};
|