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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// ░▀█▀░█▀▀░█▀█░█▀▄░█▀█░█▀▀░█░░░█▀▀
// ░░█░░▀▀█░█░█░█▀▄░█▀█░█░░░█░░░█▀▀
// ░░▀░░▀▀▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀▀▀░▀▀▀
//
// tsoracle — Distributed Timestamp Oracle
//
// Copyright (c) 2026 Prisma Risk
// Licensed under the Apache License, Version 2.0
// https://github.com/prisma-risk/tsoracle
//
//! Type-alias macro for downstream `OmniPaxos` configurations.
//!
//! `declare_omnipaxos_types_ext!(Name, EntryType, StorageType)` expands to:
//!
//! ```ignore
//! pub type NameOmniPaxos = ::omnipaxos::OmniPaxos<EntryType, StorageType>;
//! pub type NameConfig = ::omnipaxos::OmniPaxosConfig;
//! ```
//!
//! Mirrors the role of `tsoracle_openraft_toolkit::declare_raft_types_ext!`
//! in the sibling crate.