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};

pub mod flavor_quota;
use flavor_quota::flavor_quotas_scope;

pub fn quota_scope() -> Scope {
    scope("/quota").service(flavor_quotas_scope())
}