flowstdlib 0.45.0

The standard library of functions and flows for 'flow' programs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(missing_docs)]

pub use error_chain::bail;
use error_chain::error_chain;

error_chain! {
    types {
        Error, ErrorKind, ResultExt, Result;
    }

    foreign_links {
        Url(url::ParseError);
    }
}