mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-17 03:42:46 +00:00
10 lines
135 B
Rust
10 lines
135 B
Rust
extern crate types;
|
|
extern crate shuffling;
|
|
|
|
pub mod delegation;
|
|
|
|
#[derive(Debug)]
|
|
pub enum TransitionError {
|
|
InvalidInput(String),
|
|
}
|