avina-api 1.2.1

Rust API server for the LRZ-specific features of the Openstack-based LRZ Compute Cloud.
1
2
3
4
5
6
7
8
use actix_web::{Scope, web::scope};

mod flavor_price;
use flavor_price::flavor_prices_scope;

pub fn pricing_scope() -> Scope {
    scope("/pricing").service(flavor_prices_scope())
}