1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0

#![allow(dead_code)]

//! Forge is a framework for writing and running end-to-end tests in Diem

pub use anyhow::Result;

mod interface;
pub use interface::*;

mod runner;
pub use runner::*;

mod backend;
pub use backend::*;

mod txn_emitter;
pub use txn_emitter::*;

mod report;
pub use report::*;

mod slack;
pub use slack::*;