mogglo-python 0.1.1

Multi-language AST-based code search and rewriting
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;

use mogglo::cli;

fn main() -> Result<()> {
    cli::main(
        tree_sitter_python::language(),
        tree_sitter_python::NODE_TYPES,
    )
}