(self)
| 28 | |
| 29 | impl Args { |
| 30 | pub async fn run(self) -> eyre::Result<()> { |
| 31 | print_logo(); |
| 32 | |
| 33 | match self.cmd { |
| 34 | Command::Init { config_path, output_path } => { |
| 35 | docker_init::handle_docker_init(config_path, output_path).await |
| 36 | } |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | const LONG_ABOUT: &str = "Commit-Boost allows Ethereum validators to safely run MEV-Boost and community-built commitment protocols"; |
no test coverage detected