Basic functionality is there, helmule can mirror helm chart with small modifications
8 lines
162 B
Rust
8 lines
162 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone)]
|
|
pub struct Include<T> {
|
|
pub path: String,
|
|
pub kind: T,
|
|
}
|