pmrs 0.0.2

Rust support to process mining functions. Includes a library and a small cli-interface.
Documentation
1
2
3
4
5
6
7
8
pub(crate) mod variants;
use crate::objects::ocel::Ocel;
use crate::objects::ocel::importer::variants::jsonocel::import_json_ocel;
use std::error::Error;

pub fn import_ocel(file_path: &str) -> Result<Ocel, Box<dyn Error>> {
    return import_json_ocel(file_path);
}