summaryrefslogtreecommitdiff
path: root/src/vyconf_cli.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/vyconf_cli.ml')
-rw-r--r--src/vyconf_cli.ml6
1 files changed, 0 insertions, 6 deletions
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