File: test_tokio_multi_thread_run_forever.rs

package info (click to toggle)
rust-pyo3-async-runtimes 0.25.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 448 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
mod tokio_run_forever;

fn main() {
    pyo3::prepare_freethreaded_python();
    tokio_run_forever::test_main();
    println!("test test_tokio_multi_thread_run_forever ... ok");
}