bvs_library/lib.rs
1pub mod testing;
2
3/// This module contains the implementation of the `ownership` module.
4/// - `transfer_ownership` only allows the current owner to transfer ownership to a new owner.
5/// - `assert_owner` checks if the current message sender is the owner.
6pub mod ownership;
7
8pub mod addr;
9pub mod slashing;
10pub mod storage;
11pub mod time;