diff options
Diffstat (limited to 'bin/importer.ml')
-rw-r--r-- | bin/importer.ml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/bin/importer.ml b/bin/importer.ml index 4ca04fd..c710aed 100644 --- a/bin/importer.ml +++ b/bin/importer.ml @@ -34,12 +34,6 @@ module Args = struct let load_conf : string -> ImportConf.Syntax.t = fun file -> match Filename.extension file with - | ".json" -> ( - let configuration_file = Yojson.Safe.from_file (exists file) in - try ImportConf.t_of_yojson configuration_file with - | e -> - print_endline @@ ImportErrors.repr_error e; - exit 1) | _ -> ( let (conf : (Db.Syntax.t, string) result) = let* configuration_file = |