Fix file naming inconsistencies.

File names should be the same as the struct that they contain.
This commit is contained in:
Paul Hauner
2019-02-05 16:53:44 +11:00
parent 6c6ee4320d
commit 36ee4aa81f
5 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
mod grpc;
mod service;
mod beacon_block_grpc_client;
mod block_producer_service;
pub use self::grpc::BeaconBlockGrpcClient;
pub use self::service::BlockProducerService;
pub use self::beacon_block_grpc_client::BeaconBlockGrpcClient;
pub use self::block_producer_service::BlockProducerService;