mycelium-api 9.0.0-rc.6

Provide API ports to the mycelium project.
1
2
3
4
5
6
7
8
9
10
11
12
mod bootstrap_claim_page;
mod bootstrap_complete;
mod bootstrap_request_code;

use actix_web::web;

pub(crate) fn configure(config: &mut web::ServiceConfig) {
    config
        .service(bootstrap_claim_page::bootstrap_claim_page_url)
        .service(bootstrap_request_code::bootstrap_request_code_url)
        .service(bootstrap_complete::bootstrap_complete_url);
}