xref: /xiu/protocol/httpflv/src/server_test.rs (revision 87f493cd)
1 use std::thread;
2 use std::time::Duration;
3 #[tokio::test]
4 async fn my_test() {
5     tokio::join!(async move {
6         super::server::run().await;
7     });
8 }
9