File: test_tokio_multi_thread_run_forever.rs

package info (click to toggle)
rust-pyo3-async-runtimes 0.27.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 472 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 185 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
use pyo3::Python;

mod tokio_run_forever;

fn main() {
    Python::initialize();

    tokio_run_forever::test_main();
    println!("test test_tokio_multi_thread_run_forever ... ok");
}