1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (C) 2019 Yu-Wei Wu
 * All Rights Reserved.
 * This is free software; you can redistribute it and/or modify it under the
 * terms of the MIT license. A copy of the license can be found in the file
 * "LICENSE" at the root of this distribution.
 */

extern crate failure;

pub use self::ftroika::*;
pub use self::troika::*;

pub mod ftroika;
mod macros;
pub mod troika;

use core::result;

pub type Result<T> = result::Result<T, failure::Error>;