//! Creates and runs the application using the arguments provided from the command.
use{fehler::throws,paper::{Arguments, Failure, Paper},// Implements from_args().
structopt::StructOpt,};#[throws(Failure)]fnmain(){Paper::new(Arguments::from_args())?.run()?;}