debtmap 0.20.0

Code complexity and technical debt analyzer
Documentation
1
2
3
4
5
use std::fs;

fn save_content(path: &str, content: &str) -> Result<(), std::io::Error> {
    fs::write(path, content)
}