1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

add link to guide

This commit is contained in:
Nikolay Kim 2017-11-27 19:56:14 -08:00
parent 06f9b7b52f
commit 26413d1d61
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,7 @@
Asynchronous web framework for [Actix](https://github.com/actix/actix).
* [User Guide](http://actix.github.io/actix-web/guide/)
* [API Documentation (Development)](http://actix.github.io/actix-web/actix_web/)
* [API Documentation (Releases)](https://docs.rs/actix-web/)
* Cargo package: [actix-web](https://crates.io/crates/actix-web)

View file

@ -83,3 +83,8 @@ fn main() {
let _ = sys.run();
}
```
Note on `actix` crate. Actix web framework is built on top of actix actor library.
`actix::System` initializes actor system, `HttpServer` is an actor and must run within
proper configured actix system. For more information please check
[actix documentation](https://actix.github.io/actix/actix/)