lisensor 0.2.2

Tool to automatically add, check, and fix license notices in the source files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT
// Copyright (c) 2025-2026 Pistonite

//! See README on crates.io or GitHub.

mod config;
pub use config::*;

mod runner;
pub use runner::*;
mod format;
pub use format::*;

#[cfg(feature = "cli")]
mod cli;
#[cfg(feature = "cli")]
pub use cli::*;