🐛 Use app.system/system in the graph ingest helper

develop renamed app.main/system to app.system/system and dropped the
app.main require while this branch was away. Rebasing replays the old
call, so clj-kondo reports an unresolved namespace and the ns will not
load.
This commit is contained in:
Álvaro Tejero Cantero 2026-08-05 10:23:22 +02:00
parent 735b51ddc1
commit df80aca9cd
No known key found for this signature in database

View File

@ -432,7 +432,7 @@
- `:reset-db?` delete any existing db first (default true)
- `:skip-stats?` skip post-ingest MATCH count queries (default false)"
[file-id & opts]
(let [result (apply graph.ingest/ingest-file! main/system file-id opts)]
(let [result (apply graph.ingest/ingest-file! sys/system file-id opts)]
(graph.report/print-ingest! result)
result))