mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-05 07:13:11 +00:00
10 lines
202 B
Rust
Executable File
10 lines
202 B
Rust
Executable File
pub mod circuits;
|
|
pub mod recursion;
|
|
pub mod error;
|
|
pub mod circuit_helper;
|
|
mod bundle;
|
|
pub mod bn254_wrapper;
|
|
pub mod serialization;
|
|
|
|
pub type Result<T> = core::result::Result<T, error::CircuitError>;
|