summaryrefslogtreecommitdiff
path: root/src/animalia.rs
blob: f3b3261f01258db575f7a8e83bf2fe9bf634db3f (plain)
1
2
3
4
5
6
7
8
9
use std::error::Error;

pub fn main(args: Vec<String>) -> Result<(), Box<dyn Error>> {
	if !args.is_empty() {
		Err("No arguments expected to 'animalia' command")?;
	}
	
	Ok(())
}