diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-01-11 06:40:30 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-01-22 12:22:26 +0100 |
commit | 820a7bda25c5541ce9580f99ec9f6eb512103e59 (patch) | |
tree | 8aec624cff21303fac4afe137ecb52c17c5d5329 /bin | |
parent | 986bcb796d8b9e1f485baa8da599aa816c56b587 (diff) |
Removed the json configuration management
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dune | 2 | ||||
-rw-r--r-- | bin/importer.ml | 6 |
2 files changed, 0 insertions, 8 deletions
@@ -13,7 +13,6 @@ lwt
lwt.unix
otoml
- yojson
tools
helpers
importConf
@@ -27,7 +26,6 @@ importSQL
)
(link_flags (:standard))
-(preprocess (pps ppx_yojson_conv))
)
(install
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 = |