fimxi/
lib.rs

1mod actor;
2mod fn_box;
3mod thread;
4mod thread_pool;
5
6use crate::thread_pool::ThreadPool;
7
8pub fn init(thread_number: usize) -> ThreadPool {
9    thread_pool::ThreadPool::new(thread_number)
10}