diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /lib/file_handler/csv2sql.mli | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/file_handler/csv2sql.mli')
-rw-r--r-- | lib/file_handler/csv2sql.mli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/file_handler/csv2sql.mli b/lib/file_handler/csv2sql.mli index e09737b..8976034 100644 --- a/lib/file_handler/csv2sql.mli +++ b/lib/file_handler/csv2sql.mli @@ -1,10 +1,10 @@ val importInDatable : log_error:ImportErrors.t -> - conf:ImportConf.Syntax.t -> + conf:ImporterSyntax.t -> dirname:string -> ImportAnalyser.Dependency.t -> _ ImportSQL.Db.t -> - ImportCSV.DataType.t array option Lwt.t -(** Load an excel spreadsheet in an SQLite database. + ImportDataTypes.Value.t array option Lwt.t +(** Load an excel spreadsheet in an SQLite database. -Return the header if at least one row where present *) + Return the header if at least one row where present *) |