combiner 0.2.2

Combiner is a Rust-based command-line tool that processes text files in a given directory, combining their contents into a single output file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Configuration for the file combiner
#[derive(Debug, Clone)]
pub struct CombinerConfig {
    pub directory: String,
    pub output: String,
    pub tokenizer: String,
}

impl CombinerConfig {
    pub fn new(directory: String, output: String, tokenizer: String) -> Self {
        Self {
            directory,
            output,
            tokenizer,
        }
    }
}