mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-10 09:43:10 +00:00
7 lines
144 B
Rust
7 lines
144 B
Rust
pub mod circuits;
|
|
pub mod recursion;
|
|
pub mod error;
|
|
pub mod circuit_helper;
|
|
|
|
pub type Result<T> = core::result::Result<T, error::CircuitError>;
|