1// Copyright 2024 Vincents AI 2// SPDX-License-Identifier: MIT OR Apache-2.0 3 4pub mod auth; 5pub mod framework; 6pub mod service_registry; 7pub mod tests; 8pub use crate::service_registry::*; 9 10pub use framework::TestFramework;