rmap/
source.rs

1use std::path::PathBuf;
2
3// Legacy source functions - no longer used
4// The CLI now uses streaming loaders in the loaders/ module
5
6pub fn placeholder_load_csv(_file: &PathBuf, _field: &Option<String>) -> Result<String, String> {
7    Err(
8        "Legacy source functions are no longer supported. Use streaming loaders instead."
9            .to_string(),
10    )
11}