Skip to main content

sim_lib_openai_server/
clock.rs

1//! Compatibility names for the canonical server wall-clock contract.
2
3pub use sim_lib_server::{DeterministicWallClock, SystemWallClock, WallClock, WallTimestamp};
4
5#[deprecated(
6    since = "0.1.7",
7    note = "use sim_lib_server::WallClock; this compatibility name is removed in sim-lib-openai-server 0.2.0"
8)]
9pub use sim_lib_server::WallClock as GatewayClock;
10
11#[deprecated(
12    since = "0.1.7",
13    note = "use sim_lib_server::SystemWallClock; this compatibility name is removed in sim-lib-openai-server 0.2.0"
14)]
15pub use sim_lib_server::SystemWallClock as SystemGatewayClock;
16
17#[deprecated(
18    since = "0.1.7",
19    note = "use sim_lib_server::DeterministicWallClock; this compatibility name is removed in sim-lib-openai-server 0.2.0"
20)]
21pub use sim_lib_server::DeterministicWallClock as DeterministicGatewayClock;