notes 0.2.1-20200824

A simple tool for taking notes. Work in progress. See: https://gitlab.com/remipassmoilesel/notes
use colored::*;

pub struct Banners;

impl Banners {
    pub fn big() -> String {
        BANNER.green().to_string()
    }

    pub fn small() -> String {
        SMALL_BANNER.green().to_string()
    }
}

const BANNER: &'static str = "
███╗   ██╗ ██████╗ ████████╗███████╗███████╗
████╗  ██║██╔═══██╗╚══██╔══╝██╔════╝██╔════╝
██╔██╗ ██║██║   ██║   ██║   █████╗  ███████╗
██║╚██╗██║██║   ██║   ██║   ██╔══╝  ╚════██║
██║ ╚████║╚██████╔╝   ██║   ███████╗███████║
╚═╝  ╚═══╝ ╚═════╝    ╚═╝   ╚══════╝╚══════╝

    Clean all the brains !
";

const SMALL_BANNER: &'static str = "\nNotes 🚀\n";