diff options
author | John Estabrook <jestabro@vyos.io> | 2025-03-31 01:43:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 01:43:02 -0500 |
commit | 8c1474f99481f5226b1d47d1690b34d9740bf23b (patch) | |
tree | 40c0a66e0183076680a45f9f37ba4cddd311cd09 | |
parent | 79e0d515841bf0575691f62dfbd69dac3a36b9c4 (diff) | |
parent | 0ed398e75c0e4ceae8461f098a7ee2e9c7efeec2 (diff) | |
download | vyos1x-config-8c1474f99481f5226b1d47d1690b34d9740bf23b.tar.gz vyos1x-config-8c1474f99481f5226b1d47d1690b34d9740bf23b.zip |
Merge pull request #39 from jestabro/commit-post
T7272: expose config_tree clone
-rw-r--r-- | src/config_diff.mli | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config_diff.mli b/src/config_diff.mli index ee34532..4262a58 100644 --- a/src/config_diff.mli +++ b/src/config_diff.mli @@ -41,6 +41,7 @@ exception Incommensurable exception Empty_comparison exception Nonexistent_child +val clone : ?recurse:bool -> ?set_values:string list option -> Config_tree.t -> Config_tree.t ->string list -> Config_tree.t val diff_tree : string list -> Config_tree.t -> Config_tree.t -> Config_tree.t val show_diff : ?cmds:bool -> string list -> Config_tree.t -> Config_tree.t -> string val tree_union : Config_tree.t -> Config_tree.t -> Config_tree.t |