sdk: Move signers module into signer module

This commit is contained in:
Trent Nelson
2021-05-07 02:33:37 -06:00
committed by Trent Nelson
parent b71e4bdc61
commit 967840aed6
3 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,8 @@
// Allows macro expansion of `use ::solana_sdk::*` to work within this crate
extern crate self as solana_sdk;
#[cfg(feature = "full")]
pub use signer::signers;
pub use solana_program::*;
pub mod account;
@@ -41,7 +43,6 @@ pub mod secp256k1_instruction;
pub mod shred_version;
pub mod signature;
pub mod signer;
pub mod signers;
pub mod stake_weighted_timestamp;
pub mod system_transaction;
pub mod timing;