hotshot_builder_api/
lib.rs

1// Copyright (c) 2021-2024 Espresso Systems (espressosys.com)
2// This file is part of the HotShot repository.
3
4// You should have received a copy of the MIT License
5// along with the HotShot repository. If not, see <https://mit-license.org/>.
6
7mod api;
8pub mod v0_1;
9pub mod v0_2 {
10    pub use super::v0_1::*;
11    pub type Version = vbs::version::StaticVersion<0, 2>;
12}