chore: update rocket example

This commit is contained in:
Dmitriy Pleshevskiy 2020-01-07 17:20:58 +03:00
parent 1ccb6e4dde
commit f92b7c0c8c

View file

@ -9,9 +9,9 @@ use rocket::config::{Config, Environment};
config! {
ROCKET {
HOST: String => "localhost".to_string(),
HOST: String => "localhost",
PORT: u16 => 9000,
BASE_URL: String => "/".to_string(),
BASE_URL: String => "/",
}
}