this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix compilation

+5 -1
+1 -1
example/example.ml
··· 14 14 { 15 15 path = "/static/cmis"; 16 16 cmas = []; 17 - cmis = { dynamic_cmis = None; static_cmis = [] }; 17 + cmis = { dynamic_cmis = []; static_cmis = [] }; 18 18 } 19 19 in 20 20 Lwt.return (Ok rpc)
+4
example/unix_worker.ml
··· 98 98 let capture = capture 99 99 let sync_get _ = None 100 100 let create_file ~name:_ ~content:_ = failwith "Not implemented" 101 + 102 + let import_scripts urls = if List.length urls > 0 then failwith "Not implemented" else () 103 + 104 + let init_function _ () = failwith "Not implemented" 101 105 end 102 106 103 107 module U = Impl.Make (S)