rustic scheduler - a client/server application to schedule regular backups on
many clients to one identical repository controlled by a central scheduling
server.
//! Main entry point for RusticScheduler
#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]#![forbid(unsafe_code)]userustic_scheduler::application::RUSTIC_SCHEDULER_APP;/// Boot RusticScheduler
fnmain(){abscissa_core::boot(&RUSTIC_SCHEDULER_APP);}