1
0
mirror of https://github.com/actix/actix-website synced 2025-06-27 07:29:02 +02:00

s/Actix-web/Actix Web

This commit is contained in:
Rob Ede
2022-04-07 15:44:10 +01:00
parent 36b3f9a3d7
commit 12cbd2ebbf
9 changed files with 18 additions and 18 deletions

View File

@ -19,7 +19,7 @@ async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.app_data(web::Data::new(AppState {
app_name: String::from("Actix-web"),
app_name: String::from("Actix Web"),
}))
.service(index)
})