aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: a77349a5a2639601dae0529df67464b53525f68a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![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();
/// ```
pub fn introduce_locusts() {}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test() {
        introduce_locusts();
    }
}