1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) The Diem Core Contributors
// SPDX-License-Identifier: Apache-2.0

pub mod directives;
pub mod matcher;

#[cfg(test)]
mod tests;

pub use crate::checker::{
    directives::Directive,
    matcher::{match_output, Match, MatchError, MatchResult, MatchStatus},
};