diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-05 14:32:56 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-05 14:32:56 -0500 |
commit | 38c5e18b94c1f2f506b89cfa582b4aba80fe48d7 (patch) | |
tree | ee0b2a7cec961f3f2d04057e269695eddf132afc /src/lib.rs | |
parent | Nothing? (diff) | |
download | locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar.gz locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar.bz2 locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar.lz locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar.xz locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.tar.zst locusts-38c5e18b94c1f2f506b89cfa582b4aba80fe48d7.zip |
Add python and a bunch of documentation
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,16 @@ #![no_std] -pub fn introduce_locusts(){} +/// 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 { |