-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.rs
29 lines (27 loc) · 948 Bytes
/
routes.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use actix_web::web;
use crate::configuration::handlers::{
create_application_handler, create_endpoint_handler, disable_endpoint_handler,
enable_endpoint_handler,
};
use crate::events::handlers::create_event_handler;
use crate::handlers::health_check::health_check;
pub fn routes(cfg: &mut web::ServiceConfig) {
cfg.route("/health_check", web::get().to(health_check));
cfg.route("/application", web::post().to(create_application_handler));
cfg.route(
"/application/{app_id}/endpoint",
web::post().to(create_endpoint_handler),
);
cfg.route(
"/application/{app_id}/endpoint/{endpoint_id}/disable",
web::post().to(disable_endpoint_handler),
);
cfg.route(
"/application/{app_id}/endpoint/{endpoint_id}/enable",
web::post().to(enable_endpoint_handler),
);
cfg.route(
"application/{app_id}/event",
web::post().to(create_event_handler),
);
}