From 4028c234ce9e42ef76bcc5243fb0cf75aff09f9b Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Fri, 5 Dec 2025 13:00:37 -0600 Subject: T8074: drop vyconf_cli options that are handled by vyconf_cli_compat --- src/vyconf_cli.ml | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/vyconf_cli.ml') diff --git a/src/vyconf_cli.ml b/src/vyconf_cli.ml index d65c56b..8563572 100644 --- a/src/vyconf_cli.ml +++ b/src/vyconf_cli.ml @@ -5,16 +5,12 @@ type op_t = | OpSet | OpDelete | OpDiscard - | OpShowConfig - | OpSessionChanged let op_of_string s = match s with | "vy_set" -> OpSet | "vy_delete" -> OpDelete | "vy_discard" -> OpDiscard - | "vy_show" -> OpShowConfig - | "vy_session_changed" -> OpSessionChanged | _ -> failwith (Printf.sprintf "Unknown operation %s" s) let config_format_of_string s = @@ -80,8 +76,6 @@ let main op path = | OpSet -> set c path | OpDelete -> delete c path | OpDiscard -> discard c - | OpShowConfig -> show_config c path - | OpSessionChanged -> session_changed c end | Error e -> Error e |> Lwt.return in -- cgit v1.2.3