1
2
3
4
5
6
7
8
9
10
11
12
13
14
// #![doc = include_str!("./README.md")]

mod app;
pub mod cli;
pub mod editor;
pub mod fuzzy_search;
pub mod mytui;
pub mod panic_hook;

pub fn star() {
    open::that_detached("https://github.com/saying121/lcode").unwrap_or_default();
}

pub use leetcode_api::glob_leetcode;