goosedump 0.12.17

Coding agent context data browser
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) Jarkko Sakkinen 2026

#![deny(clippy::all)]
#![deny(clippy::pedantic)]

mod cli;
mod engine;

fn main() {
    cli::run();
}