summary refs log tree commit diff
path: root/src/main.rs
blob: 27313c6e29f33f7eb5200596e7fd45fe2147a92f (plain)
1
2
3
4
5
6
7
mod jobs;


fn main() {
    println!("{}_{} starting up", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
    jobs::startup::migrate_db();
}