movey-core 0.0.2

The application core code
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod commands;
pub mod hazard;
pub mod error;

use utils::error::Result;

pub fn start() -> Result<()> {
    // does nothing

    Ok(())
}