Source file serverInfo.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Version = struct
type t =
{ coq : string
; ocaml : string
; coq_lsp : string
}
end
module Status = struct
type t =
| Stopped
| Idle of string
| Running of string
end