1 2 3 4 5 6 7 8
// SPDX-FileCopyrightText: 2023 Thomas Kramer <code@tkramer.ch> // // SPDX-License-Identifier: GPL-3.0-or-later //! Executor implementations. pub mod multi_thread; pub mod single_thread;