# wind-unsync **Repository Path**: dakai-chen/wind-unsync ## Basic Information - **Project Name**: wind-unsync - **Description**: 一个 thread-per-core 架构的异步网络框架(实验性的) - **Primary Language**: Rust - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-12-13 - **Last Updated**: 2025-04-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Wind

简单易用的异步网络框架

## 例子 ```rust use wind::server::Server; use wind::service::service_fn; #[tokio::main(flavor = "current_thread")] async fn main() { Server::bind("127.0.0.1:80".parse().unwrap()) .run(|| service_fn(|_| async { Ok("Hello, World!!!") })) .await .unwrap(); } ```