Changeset 20 in code for trunk/cli/conversion.ml


Ignore:
Timestamp:
Oct 30, 2022, 2:48:02 PM (2 years ago)
Author:
fox
Message:

Begin unifying conf and pck code; inline CSS; optional CSS & Atom

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cli/conversion.ml

    r19 r20  
    11open Logarion
    22type t = {
    3         id: string; dir: string;
     3        id: string;
     4        dir: string;
    45        kv: string Store.KV.t;
    56        topic_roots: string list;
     
    1314        indices: (t -> unit) option;
    1415}
     16
     17let 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.