diff options
author | John Estabrook <jestabro@vyos.io> | 2025-03-20 21:26:37 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-03-31 00:50:30 -0500 |
commit | bed066dbf1b6cf9d606c0f1f827cce30f4dcc430 (patch) | |
tree | c0bf75f5de2faeaacc3d9486b049700c4b5559ec /src/commit.mli | |
parent | 96058ef19d655a8854ccbb676ec43b16b4d1e0af (diff) | |
download | vyconf-bed066dbf1b6cf9d606c0f1f827cce30f4dcc430.tar.gz vyconf-bed066dbf1b6cf9d606c0f1f827cce30f4dcc430.zip |
T7272: simplify library dependencies for implementation of commit op
Diffstat (limited to 'src/commit.mli')
-rw-r--r-- | src/commit.mli | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commit.mli b/src/commit.mli index da97389..696f595 100644 --- a/src/commit.mli +++ b/src/commit.mli @@ -26,6 +26,8 @@ type commit_data = { node_list: node_data list; } [@@deriving to_yojson] +val tree_source_to_yojson : tree_source -> [> `String of string ] + val default_node_data : node_data val default_commit_data : commit_data @@ -33,5 +35,3 @@ val default_commit_data : commit_data val calculate_priority_lists : Vyos1x.Reference_tree.t -> Vyos1x.Config_tree.t -> Vyos1x.Config_tree.t -> node_data list * node_data list val commit_store : commit_data -> unit - -val show_commit_data : Vyos1x.Config_tree.t -> Vyos1x.Config_tree.t -> string |