module A = ImportAnalyser.Dependency module C = ImportContainers module Db = ImportSQL.Db let importInDatable : log_error:ImportErrors.t -> conf:ImporterSyntax.t -> dirname:string -> A.t -> 'a Db.t -> ImportDataTypes.Value.t array option Lwt.t = fun ~log_error ~conf ~dirname mapping db -> ignore dirname; ignore conf; ignore log_error; ignore @@ Db.create_table db mapping; Lwt.return None