#[on_init_random_seed]Expand description
The on_init_random_seed function is a procedural macro attribute for hooking into the
OnInitRandomSeed event. It allows you to define custom logic to be executed after
the satellite has initialized the random seed.
Example:
#[on_init_random_seed]
fn on_init_random_seed() {
// Your post-initialization logic after random seed setup
}