oclean 0.1.1

Process-cleanup wrapper for opencode sessions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]
#![deny(warnings)]
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![deny(clippy::nursery)]

mod app;
mod cleanup;
mod process_tree;
mod resolve;

fn main() -> std::process::ExitCode {
    app::entrypoint()
}