qubit_task/lib.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! # Qubit Task
11//!
12//! Provides task-oriented services built on top of `qubit-executor and qubit-thread-pool`.
13//!
14
15pub mod service;
16
17pub use qubit_executor::{
18 TaskExecutionError,
19 TaskHandle,
20 TaskResult,
21};