Skip to main content

ralph_workflow/logger/
file_writer.rs

1pub fn append_to_file(path: &str, msg: &str) -> std::io::Result<()> {
2    crate::logger::io::append_to_file(path, msg)
3}