jotspot 0.1.0

A versatile text-based user interface (TUI) tool designed to simplify the annotation process
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod annotation;
mod metadata;
mod ui;

use std::env;

fn main() {
    let args: Vec<String> = env::args().skip(1).collect();

    if args.len() == 0 {
        ui::run_annotate_tui(metadata::read_annotations());
    } else {
        metadata::annotate(args.join(" "));
    }
}