diff options
author | John Estabrook <jestabro@vyos.io> | 2024-10-23 18:50:46 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-10-27 20:50:47 -0500 |
commit | 92b9c5e1a47be12b1e5dd7c6f069e69d28465eac (patch) | |
tree | 316c6431b2aa6fd2324f47d8de177411b6c868b8 /src/vyconf_client.mli | |
parent | 037c3ce961e1fec94b1d50b069b69c6636ac0393 (diff) | |
download | vyconf-92b9c5e1a47be12b1e5dd7c6f069e69d28465eac.tar.gz vyconf-92b9c5e1a47be12b1e5dd7c6f069e69d28465eac.zip |
T6718: add rule to generate protobuf with name change
Regenerate protobuf files:
ocaml-protoc --ml_out src/ data/vyconf.proto
The generated files vyconf.* are renamed vyconf_pbt.* instead of the
split into vyconf_pb/vyconf_types as in the original implementation.
Diffstat (limited to 'src/vyconf_client.mli')
-rw-r--r-- | src/vyconf_client.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vyconf_client.mli b/src/vyconf_client.mli index 8621130..dbf9e25 100644 --- a/src/vyconf_client.mli +++ b/src/vyconf_client.mli @@ -19,7 +19,7 @@ type response = { } -val create : ?token:(string option) -> string -> Vyconf_connect.Vyconf_types.request_output_format -> Vyconf_connect.Vyconf_types.request_config_format -> t Lwt.t +val create : ?token:(string option) -> string -> Vyconf_connect.Vyconf_pbt.request_output_format -> Vyconf_connect.Vyconf_pbt.request_config_format -> t Lwt.t val get_token : t -> (string, string) result Lwt.t |