Changeset 20 in code for trunk/cli/conversion.ml
- Timestamp:
- Oct 30, 2022, 2:48:02 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/conversion.ml
r19 r20 1 1 open Logarion 2 2 type t = { 3 id: string; dir: string; 3 id: string; 4 dir: string; 4 5 kv: string Store.KV.t; 5 6 topic_roots: string list; … … 13 14 indices: (t -> unit) option; 14 15 } 16 17 let empty () = { 18 id = ""; dir = ""; 19 kv = Store.KV.empty; 20 topic_roots = []; 21 topics = Topic_set.Map.empty; 22 texts = [] 23 }
Note:
See TracChangeset
for help on using the changeset viewer.