finitio 0.1.0

Finitio data language
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::{path::PathBuf, collections::HashMap};
use serde_json::Result;

use crate::{fio};

pub fn generate_json(adt: &HashMap<PathBuf, fio::Schema>) -> Result<()> {
    let j = serde_json::to_string(&adt)?;
    println!("{}", j);
    Ok(())
}