1
2
3
4
5
use std::error::Error;

pub fn parse(_content: String) -> Result<(), Box<Error>> {
    unimplemented!()
}