diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-04-01 15:39:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-01 15:39:44 +0100 |
commit | aedecf6fa96509ef59fd2e1f607a8a13c18d214b (patch) | |
tree | 610d48220e115555d1770f9d7631999b3101bd80 /src/vycli.ml | |
parent | 920b75a6dbf9eac4b94600b759818b2ec28004ae (diff) | |
parent | ab010dbe993afc990fafa4525e1a94670ca7f5a4 (diff) | |
download | vyconf-aedecf6fa96509ef59fd2e1f607a8a13c18d214b.tar.gz vyconf-aedecf6fa96509ef59fd2e1f607a8a13c18d214b.zip |
Merge pull request #17 from jestabro/commit-post
T7272: update vyconf config tree on results from commitd
Diffstat (limited to 'src/vycli.ml')
-rw-r--r-- | src/vycli.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vycli.ml b/src/vycli.ml index f793ae0..bd14713 100644 --- a/src/vycli.ml +++ b/src/vycli.ml @@ -1,4 +1,4 @@ -open Client.Vyconf_client +open Vyconfd_client.Vyconf_client open Vyconf_connect.Vyconf_pbt type op_t = @@ -53,7 +53,7 @@ let output_format_of_string s = | _ -> failwith (Printf.sprintf "Unknown output format %s, should be plain or json" s) let main socket op path out_format config_format = - let%lwt client = Client.Vyconf_client.create ~token:!token socket out_format config_format in + let%lwt client = create ~token:!token socket out_format config_format in let%lwt result = match op with | None -> Error "Operation required" |> Lwt.return | Some o -> |