1
 2
 3
 4
 5
 6
 7
 8
 9
10
use crate::value::pod::Pod;

pub mod json;
pub mod toml;
pub mod yaml;

pub trait Engine {
    fn new() -> Self;
    fn parse(&self, content: &str) -> Pod;
}