iridis 0.4.0

iridis is a framework that lets you define and build dataflow applications with ease.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This module defines some report messages for internal use

use iridis_node::prelude::thirdparty::Uuid;

use crate::prelude::*;

pub fn report_primitive_not_found(uuid: Uuid) -> eyre::Report {
    eyre::Report::msg(format!(
        "Primitive '{}' not found. This is a big error. Please report it",
        uuid
    ))
}