rustic_scheduler 0.2.1

rustic scheduler - a client/server application to schedule regular backups on many clients to one identical repository controlled by a central scheduling server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Main entry point for RusticScheduler

#![deny(warnings, missing_docs, trivial_casts, unused_qualifications)]
#![forbid(unsafe_code)]

use rustic_scheduler::application::RUSTIC_SCHEDULER_APP;

/// Boot RusticScheduler
fn main() {
    abscissa_core::boot(&RUSTIC_SCHEDULER_APP);
}