djal_parser 0.1.1

A library to parse configuration files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use std::{
    fs::File,
    io::{Read, Result},
};


pub fn read_file(path: &str) -> Result<String> {
    let mut file = File::open(path)?;
    let mut contents = String::new();
    file.read_to_string(&mut contents)?;
    Ok(contents)
}