sors 0.0.1

A standalone organization system to organize and track tasks
Documentation
#[macro_use]
extern crate lazy_static;

pub mod statics;
pub mod error;
pub mod tasks;
pub mod clock;
pub mod doc;
pub mod state;
pub mod terminal;

pub use std::env::var;
pub use uuid::Uuid;
pub use std::io::Write;
pub use std::path::Path;
pub use chrono::Local;
pub use std::rc::Rc;

pub use error::*;
pub use tasks::*;
pub use doc::*;
pub use state::*;