Basic functionality is there, helmule can mirror helm chart with small modifications
24 lines
341 B
Rust
24 lines
341 B
Rust
pub mod cli;
|
|
pub mod config;
|
|
pub mod git;
|
|
pub mod helm;
|
|
pub mod include;
|
|
pub mod output;
|
|
pub mod template;
|
|
pub mod workdir;
|
|
|
|
pub fn add(left: usize, right: usize) -> usize {
|
|
left + right
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn it_works() {
|
|
let result = add(2, 2);
|
|
assert_eq!(result, 4);
|
|
}
|
|
}
|