blob: ff48d8628ebcaf209986e675096de12b06c89ddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
type t
type status =
| Success
| Fail
| Invalid_path
| Invalid_value
| Commit_in_progress
| Configuration_locked
| Internal_error
| Permission_denied
| Path_already_exists
type response = {
status : status;
output : string option;
error : string option;
warning : string option;
}
val create : string -> t Lwt.t
val shutdown : t -> t Lwt.t
val get_status : t -> response Lwt.t
val setup_session : ?on_behalf_of:(int option) -> t -> string -> (string, string) result Lwt.t
|