ttags 0.4.3

Generate ctags using Tree Sitter
Documentation
1
2
3
4
5
6
7
use std::error::Error;
use std::process::exit;
use ttags::App;

fn main() -> Result<(), Box<dyn Error>> {
    exit(App::run()?);
}