Deukhoofd 0d95dcf618
All checks were successful
continuous-integration/drone/push Build is passing
Fixes all clippy warnings
2022-07-01 18:20:16 +02:00

11 lines
307 B
Rust

#[doc(inline)]
pub use random::Random;
#[doc(inline)]
pub use string_key::StringKey;
/// The random module defines a RNG implementation used in pkmn_lib
mod random;
/// The string_key module defines a custom string handling for reduced allocations and fast lookups
/// and equality checks.
mod string_key;