#![no_std]/// Add locusts to your codebase.////// Note that locusts are not included with this package, you must provide your own.////// # Examples////// ```/// use locusts::introduce_locusts;////// introduce_locusts();/// ```pubfnintroduce_locusts(){}#[cfg(test)]modtests{usesuper::*;#[test]fntest(){introduce_locusts();}}