blueprint-pricing-engine 0.3.0-alpha.3

Tangle Cloud Pricing Engine for service offerings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cloud provider pricing APIs
//!
//! This module provides real pricing data from cloud providers for:
//! - FaaS (Function-as-a-Service) platforms like AWS Lambda, GCP Cloud Functions, Azure Functions
//! - VM (Virtual Machine) instance pricing from AWS, GCP, Azure, DigitalOcean, Vultr, and more
//!
//! All pricing is fetched from real provider APIs - NO HARDCODED VALUES.

pub mod faas;
pub mod vm;

pub use faas::{FaasPricing, FaasPricingFetcher};
pub use vm::{InstanceInfo, PricingFetcher};