mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-20 02:30:51 +00:00
12 lines
166 B
Rust
12 lines
166 B
Rust
|
use super::*;
|
||
|
|
||
|
mod ssz_generic;
|
||
|
// mod ssz_static;
|
||
|
|
||
|
pub use ssz_generic::*;
|
||
|
|
||
|
#[derive(Debug, Deserialize)]
|
||
|
pub struct TestDocCases<T> {
|
||
|
pub test_cases: Vec<T>,
|
||
|
}
|