injm 0.5.1

A CLI tool that injects content into marked regions in source files.
1
2
3
4
5
6
7
8
9
use thiserror::Error;

pub(crate) type Result<T> = std::result::Result<T, InjectorError>;

#[derive(Debug, Error)]
pub(crate) enum InjectorError {
    #[error("empty input content")]
    EmptyInputContent,
}