1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu> // // SPDX-License-Identifier: EUPL-1.2 pub mod error; pub mod stop_kind; mod stopped; pub mod timer_event; pub use error::TimerError; pub use stopped::Stopped; pub use timer_event::TimerEvent;