mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Restore App::finish() method
This commit is contained in:
parent
f975b4fd10
commit
802d8cbcfa
3 changed files with 27 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.5.6] - 2022-01-03
|
||||
|
||||
* web: Restore `App::finish()` method
|
||||
|
||||
## [0.5.5] - 2022-01-03
|
||||
|
||||
* Disable default runtime selection
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.5.5"
|
||||
version = "0.5.6"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -449,6 +449,28 @@ where
|
|||
F::Future: 'static,
|
||||
Err: ErrorRenderer,
|
||||
{
|
||||
/// Construct service factory with default `AppConfig`, suitable for `http::HttpService`.
|
||||
///
|
||||
/// ```rust,no_run
|
||||
/// use ntex::{web, http, server};
|
||||
///
|
||||
/// #[ntex::main]
|
||||
/// async fn main() -> std::io::Result<()> {
|
||||
/// server::build().bind("http", "127.0.0.1:0", |_|
|
||||
/// http::HttpService::build().finish(
|
||||
/// web::App::new()
|
||||
/// .route("/index.html", web::get().to(|| async { "hello_world" }))
|
||||
/// .finish()
|
||||
/// )
|
||||
/// )?
|
||||
/// .run()
|
||||
/// .await
|
||||
/// }
|
||||
/// ```
|
||||
pub fn finish(self) -> AppFactory<M, F, Err> {
|
||||
IntoServiceFactory::<AppFactory<M, F, Err>, Request, ()>::into_factory(self)
|
||||
}
|
||||
|
||||
/// Construct service factory suitable for `http::HttpService`.
|
||||
///
|
||||
/// ```rust,no_run
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue