Renamed index in endpoints_v1 to heartbeat
Added heartbeat to configure
This commit is contained in:
parent
bb5fb386a7
commit
ba6bde2c66
1 changed files with 2 additions and 1 deletions
|
@ -5,7 +5,7 @@ use crate::v1::{docking, os, all_info, battery};
|
||||||
use crate::version;
|
use crate::version;
|
||||||
|
|
||||||
#[get("/are_you_there")]
|
#[get("/are_you_there")]
|
||||||
pub async fn index() -> HttpResponse {
|
pub async fn heartbeat() -> HttpResponse {
|
||||||
HttpResponse::Ok().body("yes")
|
HttpResponse::Ok().body("yes")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,6 +89,7 @@ pub async fn get_version_info() -> HttpResponse {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn configure(cfg: &mut web::ServiceConfig) {
|
pub fn configure(cfg: &mut web::ServiceConfig) {
|
||||||
|
cfg.service(heartbeat);
|
||||||
cfg.service(get_all_info);
|
cfg.service(get_all_info);
|
||||||
cfg.service(get_dock_info);
|
cfg.service(get_dock_info);
|
||||||
cfg.service(get_os_info);
|
cfg.service(get_os_info);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue